summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/ppp/pppstats/Makefile.sunos4
blob: 2a036f28f2084fa45a3940aa3f04d9a98d16d434 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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)