]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.osf
tell em to do make depend
[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
20 pppstats: $(PPPSTATSRCS)
21         $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
22
23 clean:
24         rm -f pppstats *~ #* core
25
26 depend:
27         cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
28 #       makedepend $(CFLAGS) $(PPPSTATSRCS)