summaryrefslogtreecommitdiff
path: root/ASNMP/agent/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ASNMP/agent/Makefile')
-rw-r--r--ASNMP/agent/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/ASNMP/agent/Makefile b/ASNMP/agent/Makefile
deleted file mode 100644
index 18886acd2a7..00000000000
--- a/ASNMP/agent/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-# Sample SNMPv1 Agent
-# Makefile for Solaris 2.x
-# $Id$
-
-OBJS = main.o snmp_agent.o agent_impl.o
-INCL = -I$(ACE_ROOT) -I$(ACE_ROOT)/ASNMP
-CC=CC
-SOL_FLAGS=-mt -R $(ACE_ROOT)/ASNMP/asnmp:$(ACE_ROOT)/ace
-DEBUG = -g $(SOL_FLAGS)
-CFLAGS =$(INCL) $(DEBUG)
-RUNPATH =
-LIBS = -L $(ACE_ROOT)/ASNMP/asnmp -lasnmp -L $(ACE_ROOT)/ace -lACE -ldl
-
-agent: $(OBJS)
- $(CC) -o agent $(DEBUG) $(OBJS) $(LIBS) $(RUNPATH)
-
-
-main.o: main.cpp
- $(CC) -c $(CFLAGS) main.cpp
-
-snmp_agent.o: snmp_agent.cpp snmp_agent.h
- $(CC) -c $(CFLAGS) snmp_agent.cpp
-
-agent_impl.o: agent_impl.cpp agent_impl.h
- $(CC) -c $(CFLAGS) agent_impl.cpp
-
-clean:
- -$(RM) *.o agent *~