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

add all targets for building complete apps.

parent c7a1c9f4
No related branches found
No related tags found
No related merge requests found
...@@ -4,19 +4,27 @@ ...@@ -4,19 +4,27 @@
# Can be used to build both the ZMap library and the ZMap application. # Can be used to build both the ZMap library and the ZMap application.
# #
APP_DIR = zmapApp
MAKE_DIRS = $(APP_DIR) zmapmanager zmapserver zmapthreads zmaputils zmapwindow
# Add directories to this list as they are sorted out.
MAKE_DIRS = zmapmanager
all: makebindir all: makebindir
@for d in $(MAKE_DIRS); do \ @for d in $(MAKE_DIRS); do \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \ (cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
done done
clean: clean: makebindir
@for d in $(MAKE_DIRS); do \ @for d in $(MAKE_DIRS); do \
(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \ (cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
done done
@rm -f $(ZMAPAPP_LIB) $(ZMAP_LIB)
zmap : makebindir
@cd $(APP_DIR) ; echo ; echo 'make '$@ ; $(MAKE) $@ ; echo
zmapC : makebindir
@cd $(APP_DIR) ; echo ; echo 'make '$@ ; $(MAKE) $@ ; echo
# bootstrap stuff, without these make can't find the files to include which define # bootstrap stuff, without these make can't find the files to include which define
......
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