diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-17 20:31:56 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-08-17 20:31:56 +0800 |
commit | 30ae3eb353c54ba06efab9b776efdec11983cb6b (patch) | |
tree | ca4a01c04e328c49f3932bf579785472487e21f0 /util/Makefile | |
parent | 080973599028776d184e4526c58fab5dc1cec8bd (diff) | |
download | pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar.gz pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar.bz2 pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar.lz pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar.xz pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.tar.zst pttbbs-30ae3eb353c54ba06efab9b776efdec11983cb6b.zip |
outta cache
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@475 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'util/Makefile')
-rw-r--r-- | util/Makefile | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/util/Makefile b/util/Makefile index 2a56cc0e..f704a564 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.17 2002/08/15 09:44:36 in2 Exp $ +# $Id: Makefile,v 1.18 2002/08/17 12:31:56 in2 Exp $ BBSHOME?=$(HOME) OSTYPE!=uname @@ -30,7 +30,8 @@ CPROGS= bbsmail BM_money post account birth deluserfile expire mandex\ poststat showboard antispam countalldice webgrep bbsrf\ initbbs outmail xchatd userlist tunepasswd buildir reaper shmsweep\ merge_passwd merge_board inndBM buildAnnounce rmuid \ - toplazyBM jungo toplazyBBM shmctl mdclean splitpasswd indexuser + toplazyBM jungo toplazyBBM shmctl mdclean splitpasswd indexuser \ + cacheserver localserver testoc PROGS= $(CPROGS) BM_money.sh backpasswd.sh mailog.sh opendice.sh\ openticket.sh stock.sh topsong.sh weather.sh stock.perl weather.perl\ @@ -168,6 +169,15 @@ mdclean: mdclean.c splitpasswd: splitpasswd.c $(CC) $(CFLAGS) -o $@ $@.c +cacheserver: cacheserver.c + $(CC) $(CFLAGS) -I/usr/local/include -lavltree -L/usr/local/lib -o $@ $@.c + +localserver: localserver.c + $(CC) $(CFLAGS) -o $@ $@.c + +testoc: testoc.c + $(CC) $(CFLAGS) -o $@ $@.c + install: $(PROGS) install -d $(BBSHOME)/bin/ install -c -m 755 $(PROGS) $(BBSHOME)/bin/ |