Skip to content
Snippets Groups Projects
Commit b4a47ceb authored by edgrif's avatar edgrif
Browse files

allow make command to be specified via MAKE macro.

parent 27b566cd
No related branches found
No related tags found
No related merge requests found
......@@ -8,10 +8,9 @@
# Add directories to this list as they are sorted out.
MAKE_DIRS = zmapmanager
all: forcemake platform
all: platform
@for d in $(MAKE_DIRS); do \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; /usr/bin/posix/make $@ ; echo) ; \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
done
clean: forcemake platform
......@@ -29,3 +28,4 @@ clean: forcemake platform
ROOT_DIRECTORY = .
MAKEDEFS_DIR = $(ROOT_DIRECTORY)/zmapMake
include $(MAKEDEFS_DIR)/common.make
include $(MAKEDEFS_FILE)
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment