diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-09-22 20:14:39 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-09-22 20:14:39 +0800 |
commit | 21295b3ae2d324312c343898db97f53b989d48b4 (patch) | |
tree | e74caaa7fce0f36a0293fe95ee7cd64b0efdcef0 /util | |
parent | 81c98e60178549e9933961219d370252e91198cb (diff) | |
download | pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar.gz pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar.bz2 pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar.lz pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar.xz pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.tar.zst pttbbs-21295b3ae2d324312c343898db97f53b989d48b4.zip |
fix that adding file.c in r2207 causes compile failure in util/.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2206 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'util')
-rw-r--r-- | util/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/Makefile b/util/Makefile index 70c3387f..a4ee5cc9 100644 --- a/util/Makefile +++ b/util/Makefile @@ -8,11 +8,11 @@ BBSBASE= ../include/var.h UTIL_OBJS= \ util_cache.o util_record.o util_passwd.o util_var.o \ - util_stuff.o util_osdep.o util_args.o + util_stuff.o util_osdep.o util_args.o util_file.o MBBSD_OBJS= \ cache record passwd var \ - stuff osdep args + stuff osdep args file # 下面這些程式, 會被 compile 並且和 $(UTIL_OBJS) 聯結 CPROG_WITH_UTIL= \ |