summaryrefslogtreecommitdiff
path: root/pppstats
diff options
context:
space:
mode:
authorEivind Næss <eivnaes@yahoo.com>2021-07-20 09:20:04 -0700
committerEivind Næss <eivnaes@yahoo.com>2021-07-20 09:20:04 -0700
commit2b167650a9a306c3ab9f24f10fd3384e2fa1028e (patch)
tree7172d42a850a41d19b06ebd3c825b234cd7d0100 /pppstats
parent75f1f5fde9fa6a64d0c35af6dfac5086a0739334 (diff)
downloadppp-2b167650a9a306c3ab9f24f10fd3384e2fa1028e.tar.gz
Remove obsolete Makefile(s) and configure scripts
Signed-off-by: Eivind Næss <eivnaes@yahoo.com>
Diffstat (limited to 'pppstats')
-rw-r--r--pppstats/Makefile.linux38
-rw-r--r--pppstats/Makefile.sol220
2 files changed, 0 insertions, 58 deletions
diff --git a/pppstats/Makefile.linux b/pppstats/Makefile.linux
deleted file mode 100644
index 743ffaf..0000000
--- a/pppstats/Makefile.linux
+++ /dev/null
@@ -1,38 +0,0 @@
-#
-# pppstats makefile
-#
-CROSS_COMPILE=@CROSS_COMPILE@
-CC=$(CROSS_COMPILE)@CC@
-COPTS=@CFLAGS@
-
-PREFIX = @DESTDIR@
-DESTDIR = $(INSTROOT)$(PREFIX)
-BINDIR = $(DESTDIR)/sbin
-MANDIR = $(DESTDIR)/share/man/man8
-
-PPPSTATSRCS = pppstats.c
-PPPSTATOBJS = pppstats.o
-
-COMPILE_FLAGS = -I../include
-LIBS =
-
-INSTALL= install
-
-CFLAGS = $(COPTS) $(COMPILE_FLAGS)
-
-all: pppstats
-
-install: pppstats
- -mkdir -p $(MANDIR)
- $(INSTALL) -c pppstats $(BINDIR)
- $(INSTALL) -c -m 444 pppstats.8 $(MANDIR)
-
-pppstats: $(PPPSTATSRCS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o pppstats pppstats.c $(LIBS)
-
-clean:
- rm -f pppstats *~ #* core
-
-depend:
- cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
-# makedepend $(CFLAGS) $(PPPSTATSRCS)
diff --git a/pppstats/Makefile.sol2 b/pppstats/Makefile.sol2
deleted file mode 100644
index e0093a5..0000000
--- a/pppstats/Makefile.sol2
+++ /dev/null
@@ -1,20 +0,0 @@
-#
-# pppstats Makefile for SVR4 systems
-# $Id: Makefile.sol2,v 1.10 2002/09/07 05:15:25 carlsonj Exp $
-#
-
-include ../Makedefs.com
-
-CFLAGS = -DSTREAMS -I../include $(COPTS)
-
-all: pppstats
-
-pppstats: pppstats.c
- $(CC) $(CFLAGS) -o pppstats pppstats.c
-
-install: pppstats
- $(INSTALL) -f $(BINDIR) pppstats
- $(INSTALL) -m 444 -f $(MANDIR)/man8 pppstats.8
-
-clean:
- rm -f pppstats *~ core