diff options
author | mrm <mrm@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-01 00:09:15 +0000 |
---|---|---|
committer | mrm <mrm@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-01 00:09:15 +0000 |
commit | a50077501c0e9d965ff98c17185ef4565996b8b3 (patch) | |
tree | 1b8df033368b83d4698b68e7ac69cb48a2e99888 /ASNMP/agent | |
parent | 2d4911a6120251fb5584ac28fde4cc5dc4ab5b44 (diff) | |
download | ATCD-a50077501c0e9d965ff98c17185ef4565996b8b3.tar.gz |
Updates for 1.6 (Eric Newton's changes)
Fix makefile to add -lasnmp to bld
Diffstat (limited to 'ASNMP/agent')
-rw-r--r-- | ASNMP/agent/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ASNMP/agent/Makefile b/ASNMP/agent/Makefile index baea2a6d268..e3d1e009596 100644 --- a/ASNMP/agent/Makefile +++ b/ASNMP/agent/Makefile @@ -1,13 +1,13 @@ OBJS = main.o snmp_agent.o agent_impl.o -CC=CC +CC=g++ INCL = -I$(ACE_ROOT) -I$(ACE_ROOT)/ASNMP DEBUG = -g -CFLAGS =$(INCL) -mt $(DEBUG) -RUNPATH = -R $(ACE_ROOT)/ace:$(ACE_ROOT)/ASNMP/asnmp -LIBS = -L $(ACE_ROOT)/ASNMP/asnmp -lasnmp -L $(ACE_ROOT)/ace -lACE -lnsl -lsocket +CFLAGS =$(INCL) $(DEBUG) +RUNPATH = +LIBS = -L $(ACE_ROOT)/ASNMP/asnmp -lasnmp -L $(ACE_ROOT)/ace -lACE -ldl -lefence agent: $(OBJS) - $(CC) -o agent -mt $(DEBUG) $(OBJS) $(LIBS) $(RUNPATH) + $(CC) -o agent $(DEBUG) $(OBJS) $(LIBS) $(RUNPATH) main.o: main.cpp |