CPU: Wrong CPU Load %.
[tomato.git] / release / src / router / ppp / pppstats / Makefile.linux
blob75bfba63fb7a177107519b15450feb3ea240b4e1
2 # pppstats makefile
3 # $Id: Makefile.linux,v 1.1.1.4 2003/10/14 08:09:54 sparq Exp $
6 PPPSTATSRCS = pppstats.c
7 PPPSTATOBJS = pppstats.o
9 #CC = gcc
10 COPTS = -O
11 COMPILE_FLAGS = -D_linux_ -I../include
12 LIBS =
14 INSTALL= install -o root -g daemon
16 CFLAGS = $(COPTS) $(COMPILE_FLAGS)
18 all: pppstats
20 install: pppstats
21         $(INSTALL) -s -c pppstats $(BINDIR)/pppstats
22         $(INSTALL) -c -m 444 pppstats.8 $(MANDIR)/man8/pppstats.8
24 pppstats: $(PPPSTATSRCS)
25         $(CC) $(CFLAGS) -o pppstats pppstats.c $(LIBS)
27 clean:
28         rm -f pppstats *~ #* core
30 depend:
31         cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
32 #       makedepend $(CFLAGS) $(PPPSTATSRCS)