diff options
author | mrm <mrm@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-01 00:09:26 +0000 |
---|---|---|
committer | mrm <mrm@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-01 00:09:26 +0000 |
commit | 6df498949dd30ec66f986db83ce1ca0116ef4684 (patch) | |
tree | 638d068c1e5105ec45eb7b79c8f0d97c13438b96 /ASNMP/examples | |
parent | a50077501c0e9d965ff98c17185ef4565996b8b3 (diff) | |
download | ATCD-6df498949dd30ec66f986db83ce1ca0116ef4684.tar.gz |
Fix makefile to add -lasnmp to bld
Diffstat (limited to 'ASNMP/examples')
-rw-r--r-- | ASNMP/examples/next/Makefile | 2 | ||||
-rw-r--r-- | ASNMP/examples/set/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ASNMP/examples/next/Makefile b/ASNMP/examples/next/Makefile index e18e5e6e7f3..a015faac242 100644 --- a/ASNMP/examples/next/Makefile +++ b/ASNMP/examples/next/Makefile @@ -14,7 +14,7 @@ BIN = next CCFLAGS = -I$(ACE_ROOT)/ASNMP/ LSRC = $(addsuffix .cpp,$(BIN)) -VLDLIBS = -R$(ACE_ROOT)/ASNMP/asnmp -L$(ACE_ROOT)/ASNMP/asnmp -lasnmp $(LDLIBS:%=%$(VAR)) +LDLIBS := -L$(ACE_ROOT)/ASNMP/asnmp -lasnmp $(LDLIBS:%=%$(VAR)) BUILD = $(VBIN) diff --git a/ASNMP/examples/set/Makefile b/ASNMP/examples/set/Makefile index 6a5eb229750..037ef22c5c0 100644 --- a/ASNMP/examples/set/Makefile +++ b/ASNMP/examples/set/Makefile @@ -14,7 +14,7 @@ BIN = set CCFLAGS = -I$(ACE_ROOT)/ASNMP/ LSRC = $(addsuffix .cpp,$(BIN)) -VLDLIBS = -R$(ACE_ROOT)/ASNMP/asnmp -L$(ACE_ROOT)/ASNMP/asnmp -lasnmp $(LDLIBS:%=%$(VAR)) +LDLIBS := -L$(ACE_ROOT)/ASNMP/asnmp -lasnmp $(LDLIBS:%=%$(VAR)) BUILD = $(VBIN) |