]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.osf
*** empty log message ***
[ppp.git] / pppstats / Makefile.osf
1 #
2 # pppstats makefile
3 #
4
5 PPPSTATSRCS = pppstats.c
6 PPPSTATOBJS = pppstats.o
7
8 #CC = gcc
9 COPTS = -O
10 COMPILE_FLAGS = -DSTREAMS
11 LIBS =
12
13 CFLAGS = -I.. $(COPTS) $(COMPILE_FLAGS)
14
15 all: pppstats
16
17 install: pppstats
18         installbsd -c pppstats $(BINDIR)/pppstats
19         installbsd -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8
20
21 pppstats: $(PPPSTATSRCS)
22         $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
23
24 clean:
25         rm -f pppstats *~ #* core
26
27 depend:
28         cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
29 #       makedepend $(CFLAGS) $(PPPSTATSRCS)