mirror of
https://github.com/nasa/fprime.git
synced 2025-12-10 00:44:37 -06:00
15 lines
464 B
Makefile
15 lines
464 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
|
|
|
|
MODULE_DIR = Svc/FatalHandler
|
|
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
|