1SHELL	= /bin/sh
2SRCS	= scache.c
3OBJS	= scache.o
4HDRS	= 
5TESTSRC	=
6DEFS	= -I. -I$(INC_DIR) -D$(SYSTYPE)
7CFLAGS	= $(DEBUG) $(OPT) $(DEFS)
8TESTPROG= 
9PROG	= scache
10INC_DIR = ../../include
11LIBS	= ../../lib/lib$(LIB_PREFIX)master$(LIB_SUFFIX) \
12	../../lib/lib$(LIB_PREFIX)global$(LIB_SUFFIX) \
13	../../lib/lib$(LIB_PREFIX)util$(LIB_SUFFIX)
14
15.c.o:;	$(CC) $(CFLAGS) -c $*.c
16
17$(PROG): $(OBJS) $(LIBS)
18	$(CC) $(CFLAGS) $(SHLIB_RPATH) -o $@ $(OBJS) $(LIBS) $(SYSLIBS)
19
20$(OBJS): ../../conf/makedefs.out
21
22Makefile: Makefile.in
23	cat ../../conf/makedefs.out $? >$@
24
25test:	$(TESTPROG)
26
27tests:
28
29root_tests:
30
31update: ../../libexec/$(PROG)
32
33../../libexec/$(PROG): $(PROG)
34	cp $(PROG) ../../libexec
35
36printfck: $(OBJS) $(PROG)
37	rm -rf printfck
38	mkdir printfck
39	sed '1,/^# do not edit/!d' Makefile >printfck/Makefile
40	set -e; for i in *.c; do printfck -f .printfck $$i >printfck/$$i; done
41	cd printfck; make "INC_DIR=../../../include" `cd ..; ls *.o`
42
43lint:
44	lint $(DEFS) $(SRCS) $(LINTFIX)
45
46clean:
47	rm -f *.o *core $(PROG) $(TESTPROG) junk 
48	rm -rf printfck
49
50tidy:	clean
51
52depend: $(MAKES)
53	(sed '1,/^# do not edit/!d' Makefile.in; \
54	set -e; for i in [a-z][a-z0-9]*.c; do \
55	    $(CC) -E $(DEFS) $(INCL) $$i | grep -v '[<>]' | sed -n -e '/^# *1 *"\([^"]*\)".*/{' \
56	    -e 's//'`echo $$i|sed 's/c$$/o/'`': \1/' \
57	    -e 's/o: \.\//o: /' -e p -e '}' ; \
58	done | LANG=C sort -u) | grep -v '[.][o][:][ ][/]' >$$$$ && mv $$$$ Makefile.in
59	@$(EXPORT) make -f Makefile.in Makefile 1>&2
60
61# do not edit below this line - it is generated by 'make depend'
62scache.o: ../../include/attr.h
63scache.o: ../../include/check_arg.h
64scache.o: ../../include/events.h
65scache.o: ../../include/htable.h
66scache.o: ../../include/iostuff.h
67scache.o: ../../include/mail_conf.h
68scache.o: ../../include/mail_params.h
69scache.o: ../../include/mail_proto.h
70scache.o: ../../include/mail_server.h
71scache.o: ../../include/mail_version.h
72scache.o: ../../include/msg.h
73scache.o: ../../include/mymalloc.h
74scache.o: ../../include/nvtable.h
75scache.o: ../../include/ring.h
76scache.o: ../../include/scache.h
77scache.o: ../../include/sys_defs.h
78scache.o: ../../include/vbuf.h
79scache.o: ../../include/vstream.h
80scache.o: ../../include/vstring.h
81scache.o: scache.c
82