]> git.ozlabs.org Git - ppp.git/blob - pppstats/Makefile.ultrix
Send a HUP to the terminal's controlling process if we get EOF.
[ppp.git] / pppstats / Makefile.ultrix
1 #
2 # pppstats makefile
3 # $Id: Makefile.ultrix,v 1.4 1995/06/01 01:32:56 paulus Exp $
4 #
5
6 BINDIR = /usr/local/etc
7 MANDIR = /usr/local/man
8
9 PPPSTATSRCS = pppstats.c
10 PPPSTATOBJS = pppstats.o
11
12 #CC = gcc
13 COPTS = -O
14 COMPILE_FLAGS = 
15 LIBS = 
16
17 CFLAGS = -I.. $(COPTS) $(COMPILE_FLAGS)
18
19 all: pppstats
20
21 install: pppstats
22         install -c pppstats $(BINDIR)/pppstats
23         install -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8
24
25 pppstats: $(PPPSTATSRCS)
26         $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
27
28 clean:
29         rm -f pppstats *~ #* core
30
31 depend:
32         cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
33 #       makedepend $(CFLAGS) $(PPPSTATSRCS)