diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-09-20 01:21:55 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-09-20 01:21:55 +0800 |
commit | 61974f460efc515c9f970c5a3f283a1f38d0c9de (patch) | |
tree | b6e97c06ef0e749fa74811f1c3adb522fa1f4f56 /cacheserver/Makefile | |
parent | a38c90eef0f81ccf4b3ab3126969968eb0e8d42d (diff) | |
download | pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar.gz pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar.bz2 pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar.lz pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar.xz pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.tar.zst pttbbs-61974f460efc515c9f970c5a3f283a1f38d0c9de.zip |
* revise Makefile
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3559 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'cacheserver/Makefile')
-rw-r--r-- | cacheserver/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cacheserver/Makefile b/cacheserver/Makefile index c923b1a3..bdff3f08 100644 --- a/cacheserver/Makefile +++ b/cacheserver/Makefile @@ -1,8 +1,10 @@ # $Id$ -.include "../pttbbs.mk" +SRCROOT= .. +.include "$(SRCROOT)/pttbbs.mk" PROGRAMS= utmpserver utmpsync utmpserver2 utmpserver3 authserver -UTILOBJ= ../util/util_stuff.o ../util/util_var.o ../util/util_file.o ../util/util_cache.o ../util/util_passwd.o ../util/util_record.o ../util/util_osdep.o ../util/util_args.o +UTILDIR= $(SRCROOT)/util +UTILOBJ= $(UTILDIR)/util_stuff.o $(UTILDIR)/util_var.o $(UTILDIR)/util_file.o $(UTILDIR)/util_cache.o $(UTILDIR)/util_passwd.o $(UTILDIR)/util_record.o $(UTILDIR)/util_osdep.o $(UTILDIR)/util_args.o all: ${PROGRAMS} |