]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.sunos4
update for 2.3.9 final
[ppp.git] / pppstats / Makefile.sunos4
1 #
2 # pppstats makefile
3 # $Id: Makefile.sunos4,v 1.4 1998/03/25 02:21:25 paulus Exp $
4 #
5
6 include ../sunos4/Makedefs
7
8 PPPSTATSRCS = pppstats.c
9 PPPSTATOBJS = pppstats.o
10
11 COMPILE_FLAGS = -DSTREAMS -DSUNOS4
12 LIBS =
13
14 CFLAGS = -I../include $(COPTS) $(COMPILE_FLAGS)
15
16 all: pppstats
17
18 install: pppstats
19         $(INSTALL) -c pppstats $(BINDIR)/pppstats
20         $(INSTALL) -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8
21
22 pppstats: $(PPPSTATSRCS)
23         $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
24
25 clean:
26         rm -f pppstats *~ #* core
27
28 depend:
29         cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
30 #       makedepend $(CFLAGS) $(PPPSTATSRCS)