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

add recursive make for individual server implementations.

parent f29b4c76
No related branches found
No related tags found
......@@ -9,6 +9,12 @@ PUB_HDRS = zmapServer.h
SERV_SRC = zmapServer.c
SERV_OBJ = zmapServer.o
ALL_SERVER_DIRS = acedb das
# These need to go ....
#ACEDB_PRIV_HDRS = acedbServer_P.h
#ACEDB_SRC = acedbServer.c
#ACEDB_OBJ = acedbServer.o
#
......@@ -17,9 +23,9 @@ SERV_OBJ = zmapServer.o
#
CURRENT_LIB = $(ZMAPTHR_LIB)
CURRENT_OBJ = $(SERV_OBJ)
CURRENT_DEP = $(PUB_HDRS) $(SERV_PRIV_HDRS)
CURRENT_DEP = build_servers $(PUB_HDRS) $(SERV_PRIV_HDRS)
CURRENT_SRC = $(SERV_PRIV_HDRS) $(SERV_SRC)
CURRENT_INC = -I$(HOME)/acedb/CODE/Ace-Conn
#CURRENT_INC =
#
# point to common make include file which contains all the rules etc.
......@@ -28,3 +34,8 @@ ROOT_DIRECTORY = ..
MAKE_DIR = $(ROOT_DIRECTORY)/zmapMake
include $(MAKE_DIR)/build.make
build_servers: forcemake
@for d in $(ALL_SERVER_DIRS); do \
(cd $$d ; echo ; echo 'make all in '$$d ; $(MAKE) 'all' ; echo) ; \
done
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