mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-29 07:24:13 +01:00
20 lines
406 B
Makefile
20 lines
406 B
Makefile
#
|
|
# MacOSX-specific packaging script
|
|
#
|
|
|
|
ifndef OPENPILOT_IS_COOL
|
|
$(error Top level Makefile must be used to build this target)
|
|
endif
|
|
|
|
.PHONY: package
|
|
package:
|
|
( \
|
|
ROOT_DIR="$(ROOT_DIR)" \
|
|
BUILD_DIR="$(BUILD_DIR)" \
|
|
PACKAGE_LBL="$(PACKAGE_LBL)" \
|
|
PACKAGE_DIR="$(PACKAGE_DIR)" \
|
|
PACKAGE_NAME="$(PACKAGE_NAME)" \
|
|
PACKAGE_SEP="$(PACKAGE_SEP)" \
|
|
"$(ROOT_DIR)/package/osx/package" \
|
|
)
|