]> git.ipfire.org Git - thirdparty/squid.git/blob - src/fs/aufs/Makefile.in
MODIO_1 commit. This change (including documentation) implements a more
[thirdparty/squid.git] / src / fs / aufs / Makefile.in
1 #
2 # Makefile for the AUFS storage driver for the Squid Object Cache server
3 #
4 # $Id: Makefile.in,v 1.1 2000/05/03 17:15:46 adrian Exp $
5 #
6
7 FS = aufs
8
9 top_srcdir = @top_srcdir@
10 VPATH = @srcdir@
11
12 CC = @CC@
13 MAKEDEPEND = @MAKEDEPEND@
14 AR_R = @AR_R@
15 RANLIB = @RANLIB@
16 AC_CFLAGS = @CFLAGS@
17 SHELL = /bin/sh
18
19 INCLUDE = -I../../../include -I$(top_srcdir)/include -I$(top_srcdir)/src/
20 CFLAGS = $(AC_CFLAGS) $(INCLUDE) $(DEFINES)
21
22 OUT = ../$(FS).a
23
24 OBJS = \
25 aiops.o \
26 async_io.o \
27 store_dir_aufs.o \
28 store_io_aufs.o
29
30
31 all: $(OUT)
32
33 $(OUT): $(OBJS)
34 @rm -f ../stamp
35 $(AR_R) $(OUT) $(OBJS)
36 $(RANLIB) $(OUT)
37
38 $(OBJS): $(top_srcdir)/include/version.h ../../../include/autoconf.h
39
40 .c.o:
41 @rm -f ../stamp
42 $(CC) $(CFLAGS) -c $<
43
44 clean:
45 -rm -rf *.o *pure_* core ../$(FS).a
46
47 distclean: clean
48 -rm -f Makefile
49 -rm -f Makefile.bak
50 -rm -f tags
51
52 install:
53
54 tags:
55 ctags *.[ch] $(top_srcdir)/src/*.[ch] $(top_srcdir)/include/*.h $(top_srcdir)/lib/*.[ch]
56
57 depend:
58 $(MAKEDEPEND) $(INCLUDE) -fMakefile *.c