7f1f3f8786
Alchemy is a build system developed by Parrot. It is a new build system based on the one used in Android. A central makefile instance scans a workspace to find user makefiles, includes them and register modules to be built. https://github.com/Parrot-Developers/alchemy Signed-off-by: Herve Codina <herve.codina@bootlin.com> [yann.morin.1998@free.fr: implicit package name with $($(PKG)_NAME)] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
9 lines
227 B
Makefile
9 lines
227 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := @MODULE@
|
|
LOCAL_SDK := @STAGING_DIR@
|
|
LOCAL_DESTDIR := usr/lib
|
|
LOCAL_MODULE_FILENAME := @MODULE_FILENAME@
|
|
LOCAL_LIBRARIES := @LIBRARIES@
|
|
include $(BUILD_LIBRARY)
|