summaryrefslogtreecommitdiffstats
path: root/cacheserver/Makefile
diff options
context:
space:
mode:
authorkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-09-20 01:21:55 +0800
committerkcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2007-09-20 01:21:55 +0800
commit61974f460efc515c9f970c5a3f283a1f38d0c9de (patch)
treeb6e97c06ef0e749fa74811f1c3adb522fa1f4f56 /cacheserver/Makefile
parenta38c90eef0f81ccf4b3ab3126969968eb0e8d42d (diff)
downloadpttbbs-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/Makefile6
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}