]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
"Null" storage, possibly useful for people who want to proxy only.
authorwessels <>
Sat, 9 Dec 2000 11:12:16 +0000 (11:12 +0000)
committerwessels <>
Sat, 9 Dec 2000 11:12:16 +0000 (11:12 +0000)
src/fs/null/Makefile.in [new file with mode: 0644]

diff --git a/src/fs/null/Makefile.in b/src/fs/null/Makefile.in
new file mode 100644 (file)
index 0000000..97b99eb
--- /dev/null
@@ -0,0 +1,56 @@
+#
+#  Makefile for the UFS storage driver for the Squid Object Cache server
+#
+#  $Id: Makefile.in,v 1.1 2000/12/09 04:12:16 wessels Exp $
+#
+
+FS             = null
+
+top_srcdir     = @top_srcdir@
+VPATH          = @srcdir@
+
+CC             = @CC@
+MAKEDEPEND     = @MAKEDEPEND@
+AR_R           = @AR_R@
+RANLIB         = @RANLIB@
+AC_CFLAGS      = @CFLAGS@
+SHELL          = /bin/sh
+
+INCLUDE                = -I../../../include -I$(top_srcdir)/include -I$(top_srcdir)/src/
+CFLAGS                 = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
+
+OUT            = ../$(FS).a
+
+OBJS           = \
+               store_dir_null.o \
+               store_io_null.o
+
+
+all: $(OUT)
+
+$(OUT): $(OBJS)
+       @rm -f ../stamp
+       $(AR_R) $(OUT) $(OBJS)
+       $(RANLIB) $(OUT)
+
+$(OBJS): $(top_srcdir)/include/version.h ../../../include/autoconf.h
+
+.c.o:
+       @rm -f ../stamp
+       $(CC) $(CFLAGS) -c $<
+
+clean: 
+       -rm -rf *.o *pure_* core ../$(FS).a
+
+distclean:     clean
+       -rm -f Makefile
+       -rm -f Makefile.bak
+       -rm -f tags
+
+install:
+
+tags:
+       ctags *.[ch] $(top_srcdir)/src/*.[ch] $(top_srcdir)/include/*.h $(top_srcdir)/lib/*.[ch]
+
+depend:
+       $(MAKEDEPEND) $(INCLUDE) -fMakefile *.c