--------------------- PatchSet 1388 Date: 2001/01/26 12:34:58 Author: darius Branch: sfs Tag: (none) Log: Fixes for sfs_test - missing dlink* and squid_curtime now, otherwise it would be working. Members: src/fs/sfs/Makefile.in:1.1.2.1->1.1.2.2 Index: squid/src/fs/sfs/Makefile.in =================================================================== RCS file: /cvsroot/squid-sf//squid/src/fs/sfs/Attic/Makefile.in,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -u -r1.1.2.1 -r1.1.2.2 --- squid/src/fs/sfs/Makefile.in 24 Jan 2001 14:11:54 -0000 1.1.2.1 +++ squid/src/fs/sfs/Makefile.in 26 Jan 2001 12:34:58 -0000 1.1.2.2 @@ -1,7 +1,7 @@ # # Makefile for the sfs storage driver for the Squid Object Cache server # -# $Id: Makefile.in,v 1.1.2.1 2001/01/24 14:11:54 adri Exp $ +# $Id: Makefile.in,v 1.1.2.2 2001/01/26 12:34:58 darius Exp $ # FS = sfs @@ -21,14 +21,19 @@ OUT = ../$(FS).a -OBJS = \ - sfs_fslo.o \ - sfs_interface.o \ - sfs_llo.o \ - sfs_splay.o \ - sfs_util.o \ - store_dir_sfs.o \ - store_io_sfs.o +SFSOBJS = \ + sfs_fslo.o \ + sfs_interface.o \ + sfs_llo.o \ + sfs_splay.o \ + sfs_util.o \ + +OBJS = $(SFSOBJS) \ + store_dir_sfs.o \ + store_io_sfs.o + +test: $(SFSOBJS) sfs_test.o + $(CC) $(CFLAGS) -L../../../lib $(SFSOBJS) sfs_test.o -lmiscutil -lpthread -lm -o sfs_test all: $(OUT)