summaryrefslogtreecommitdiff
path: root/ASNMP
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 18:35:19 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-22 18:35:19 +0000
commitcc72c398d0add84a960918be446e730b974f709b (patch)
tree6d1575204db1bd48925cbbef6fb5bece7ffa05e9 /ASNMP
parent9de843dcebfed6ad711ae4ccfec18df8115cbe0f (diff)
downloadATCD-cc72c398d0add84a960918be446e730b974f709b.tar.gz
replaced rm -f with $(RM)
Diffstat (limited to 'ASNMP')
-rw-r--r--ASNMP/agent/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/ASNMP/agent/Makefile b/ASNMP/agent/Makefile
index 043ccfa45e0..18886acd2a7 100644
--- a/ASNMP/agent/Makefile
+++ b/ASNMP/agent/Makefile
@@ -1,4 +1,4 @@
-# Sample SNMPv1 Agent
+# Sample SNMPv1 Agent
# Makefile for Solaris 2.x
# $Id$
@@ -6,17 +6,17 @@ 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)
+DEBUG = -g $(SOL_FLAGS)
CFLAGS =$(INCL) $(DEBUG)
-RUNPATH =
-LIBS = -L $(ACE_ROOT)/ASNMP/asnmp -lasnmp -L $(ACE_ROOT)/ace -lACE -ldl
+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
+main.o: main.cpp
+ $(CC) -c $(CFLAGS) main.cpp
snmp_agent.o: snmp_agent.cpp snmp_agent.h
$(CC) -c $(CFLAGS) snmp_agent.cpp
@@ -25,4 +25,4 @@ agent_impl.o: agent_impl.cpp agent_impl.h
$(CC) -c $(CFLAGS) agent_impl.cpp
clean:
- -rm *.o agent *~
+ -$(RM) *.o agent *~