mirror of
https://github.com/nasa/fprime.git
synced 2025-12-12 07:43:50 -06:00
17 lines
498 B
Makefile
17 lines
498 B
Makefile
# This Makefile goes in each module, and allows building of an individual module library.
|
|
# It is expected that each developer will add targets of their own for building and running
|
|
# tests, for example.
|
|
|
|
# derive module name from directory
|
|
DEPLOYMENT = Top
|
|
|
|
MODULE_DIR = Autocoders/Python/test/array_xml
|
|
MODULE = $(subst /,,$(MODULE_DIR))
|
|
|
|
BUILD_ROOT ?= $(subst /$(MODULE_DIR),,$(CURDIR))
|
|
export BUILD_ROOT
|
|
|
|
include $(BUILD_ROOT)/mk/makefiles/module_targets.mk
|
|
|
|
# Add module specific targets here
|