summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-28 17:44:40 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-03-28 17:44:40 +0000
commit1c6a20c4570acfadb829db4bca01d09b142671a1 (patch)
tree0a13db1f08d3f0f98f0c16a706e3714cb1971680
parent76d0218a9cf31e4f72e46c38c7e33a462b69659c (diff)
downloadATCD-1c6a20c4570acfadb829db4bca01d09b142671a1.tar.gz
added -lGateway to LIBS to pick up template instantiations
-rw-r--r--examples/ASX/Event_Server/Event_Server/Makefile2
-rw-r--r--examples/ASX/Event_Server/Transceiver/Makefile2
2 files changed, 4 insertions, 0 deletions
diff --git a/examples/ASX/Event_Server/Event_Server/Makefile b/examples/ASX/Event_Server/Event_Server/Makefile
index 32b019bc87e..72dbafcb086 100644
--- a/examples/ASX/Event_Server/Event_Server/Makefile
+++ b/examples/ASX/Event_Server/Event_Server/Makefile
@@ -21,6 +21,8 @@ LOBJ = $(addsuffix .o,$(FILES))
SHOBJ = $(addsuffix .so,$(FILES))
LDLIBS = $(addprefix .shobj/,$(SHOBJ))
+#### -lGateway is needed for template instantiations with g++ -fno-implicit-templates
+LIBS = -lGateway
VLDLIBS = $(LDLIBS:%=%$(VAR))
diff --git a/examples/ASX/Event_Server/Transceiver/Makefile b/examples/ASX/Event_Server/Transceiver/Makefile
index ab99fe70e36..8ef56cdc12c 100644
--- a/examples/ASX/Event_Server/Transceiver/Makefile
+++ b/examples/ASX/Event_Server/Transceiver/Makefile
@@ -11,6 +11,8 @@
BIN = transceiver
VLDLIBS = $(LDLIBS:%=%$(VAR))
+#### -lGateway is needed for template instantiations with g++ -fno-implicit-templates
+LIBS = -lGateway
BUILD = $(VBIN)