2017-06-16 08:25:38 -07:00

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