]> git.ozlabs.org Git - ppp.git/blobdiff - pppstats/Makefile.osf
Initial revision
[ppp.git] / pppstats / Makefile.osf
diff --git a/pppstats/Makefile.osf b/pppstats/Makefile.osf
new file mode 100644 (file)
index 0000000..29cd984
--- /dev/null
@@ -0,0 +1,28 @@
+#
+# pppstats makefile
+#
+
+PPPSTATSRCS = pppstats.c
+PPPSTATOBJS = pppstats.o
+
+#CC = gcc
+COPTS = -O
+COMPILE_FLAGS = -DSTREAMS
+LIBS =
+
+CFLAGS = -I.. $(COPTS) $(COMPILE_FLAGS)
+
+all: pppstats
+
+install: pppstats
+       installbsd -c pppstats $(BINDIR)/pppstats
+
+pppstats: $(PPPSTATSRCS)
+       $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
+
+clean:
+       rm -f pppstats *~ #* core
+
+depend:
+       cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
+#      makedepend $(CFLAGS) $(PPPSTATSRCS)