isdn4k-utils/ipppstats/Makefile.in
Andreas Kool c8e275d319 - quick and dirty Call-History in "-m" Mode (press "h" for more info) added
- eat's one more socket, Stefan: sockets[3] now is STDIN, FIRST_DESCR=4 !!
 - Support for tesion)) Baden-Wuerttemberg Tarif
 - more Providers
 - Patches from Wilfried Teiken <wteiken@terminus.cl-ki.uni-osnabrueck.de>
   - better zone-info support in "tools/isdnconf.c"
   - buffer-overrun in "isdntools.c" fixed
 - big Austrian Patch from Michael Reinelt <reinelt@eunet.at>
   - added $(DESTDIR) in any "Makefile.in"
   - new Configure-Switches "ISDN_AT" and "ISDN_DE"
     - splitted "takt.c" and "tools.c" into
         "takt_at.c" / "takt_de.c" ...
         "tools_at.c" / "takt_de.c" ...
   - new feature
       CALLFILE = /var/log/caller.log
       CALLFMT  = %b %e %T %N7 %N3 %N4 %N5 %N6
     in "isdn.conf"
 - ATTENTION:
     1. "isdnrep" dies with an seg-fault, if not HTML-Mode (Stefan?)
     2. "isdnlog/Makefile.in" now has hardcoded "ISDN_DE" in "DEFS"
     	should be fixed soon
1998-09-26 18:31:14 +00:00

50 lines
1.1 KiB
Makefile

#
# pppstats makefile
# $Id$
#
SBINDIR = @CONFIG_SBINDIR@
MANDIR = @CONFIG_MANDIR@
CC = @CC@
INSTALL = @INSTALL@
INSTALL_SBIN = $(INSTALL) -m 755 -o 0 -g 0
INSTALL_DATA = $(INSTALL) -m 644 -o 0 -g 0
INSTALL_DIR = $(INSTALL) -m 755 -o 0 -g 0 -d
PPPSTATSRCS = ipppstats.c
PPPSTATOBJS = ipppstats.o
CFLAGS = -fomit-frame-pointer -O2 -I@CONFIG_KERNELDIR@/include
all: ipppstats
uninstall:
rm -f $(DESTDIR)$(SBINDIR)/ipppstats $(DESTDIR)$(MANDIR)/man8/ipppstats.8
install: ipppstats ipppstats.man
$(INSTALL_DIR) $(DESTDIR)$(SBINDIR)
$(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man8
$(INSTALL_SBIN) ipppstats $(DESTDIR)$(SBINDIR)/ipppstats
$(INSTALL_DATA) ipppstats.man $(DESTDIR)$(MANDIR)/man8/ipppstats.8
ipppstats: Makefile $(PPPSTATSRCS)
$(CC) $(CFLAGS) -o ipppstats ipppstats.c
clean:
rm -f ipppstats *~ *.o #* core
config:
@./configure
Makefile: Makefile.in config.status
./config.status
config.status: configure
./config.status --recheck
distclean: clean
rm -f Makefile config.status config.cache config.log ipppstats.man
depend:
cpp -M $(CFLAGS) $(PPPSTATSRCS) >.depend
# makedepend $(CFLAGS) $(PPPSTATSRCS)