From 582cc7d21472ffab54ac666e298ef0531194d690 Mon Sep 17 00:00:00 2001
From: edgrif <edgrif>
Date: Fri, 14 Nov 2003 17:37:54 +0000
Subject: [PATCH] add all targets for building complete apps.

---
 src/makefile | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/src/makefile b/src/makefile
index 673481bd3..65be75f18 100755
--- a/src/makefile
+++ b/src/makefile
@@ -4,19 +4,27 @@
 # 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 \
 	(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
 	done
 
-clean: 
+clean: makebindir
 	@for d in $(MAKE_DIRS); do \
 	(cd $$d ; echo ; echo 'make '$@' in '$$d ; $(MAKE) $@ ; echo) ; \
 	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
-- 
GitLab