# 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