summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/pppstats/Makefile.sunos4
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2001-06-11 11:44:34 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2001-06-11 11:44:34 +0000
commitab5559aaabd1167a18ac882e64d97c5adc0e7d03 (patch)
treed22adafe4701e0abbccc7456fc58ae60ce75d5fb /mdk-stage1/ppp/pppstats/Makefile.sunos4
parentf35f2383eed07ff16aa76f30975817117eea6cbb (diff)
downloaddrakx-ab5559aaabd1167a18ac882e64d97c5adc0e7d03.tar
drakx-ab5559aaabd1167a18ac882e64d97c5adc0e7d03.tar.gz
drakx-ab5559aaabd1167a18ac882e64d97c5adc0e7d03.tar.bz2
drakx-ab5559aaabd1167a18ac882e64d97c5adc0e7d03.tar.xz
drakx-ab5559aaabd1167a18ac882e64d97c5adc0e7d03.zip
Initial revision
Diffstat (limited to 'mdk-stage1/ppp/pppstats/Makefile.sunos4')
-rw-r--r--mdk-stage1/ppp/pppstats/Makefile.sunos430
1 files changed, 30 insertions, 0 deletions
diff --git a/mdk-stage1/ppp/pppstats/Makefile.sunos4 b/mdk-stage1/ppp/pppstats/Makefile.sunos4
new file mode 100644
index 000000000..2a036f28f
--- /dev/null
+++ b/mdk-stage1/ppp/pppstats/Makefile.sunos4
@@ -0,0 +1,30 @@
+#
+# pppstats makefile
+# $Id$
+#
+
+include ../sunos4/Makedefs
+
+PPPSTATSRCS = pppstats.c
+PPPSTATOBJS = pppstats.o
+
+COMPILE_FLAGS = -DSTREAMS -DSUNOS4
+LIBS =
+
+CFLAGS = -I../include $(COPTS) $(COMPILE_FLAGS)
+
+all: pppstats
+
+install: pppstats
+ $(INSTALL) -c pppstats $(BINDIR)/pppstats
+ $(INSTALL) -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8
+
+pppstats: $(PPPSTATSRCS)
+ $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
+
+clean:
+ rm -f pppstats *~ #* core
+
+depend:
+ cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
+# makedepend $(CFLAGS) $(PPPSTATSRCS)