]> andersk Git - moira.git/blob - incremental/Makefile
added ksrvtgt & depend
[moira.git] / incremental / Makefile
1 # $Header$
2
3 SRCS = afs.c ksrvtgt.c
4 CFLAGS = -I../include -O
5 LIBS = -L../lib -lsms -lcom_err -lzephyr -lkrb -ldes
6
7
8 all: afs.incr ksrvtgt
9
10 afs.incr: afs.o
11         cc -o afs.incr afs.o ${LIBS}
12
13 ksrvtgt: ksrvtgt.o
14         cc -o ksrvtgt ksrvtgt.o ${LIBS}
15
16 clean:
17         rm -f *.o
18         rm -f afs.incr ksrvtgt
19
20 install: all
21         install -c afs.incr ../bin
22
23 depend:
24         mkdep ${CFLAGS} ${SRCS}
25
26 # DO NOT DELETE THIS LINE -- mkdep uses it.
27 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
28
29 afs.o: afs.c ../include/sms.h /usr/include/sms_et.h ../include/sms_app.h
30 afs.o: ../include/mit-copyright.h /usr/include/sys/file.h
31 ksrvtgt.o: ksrvtgt.c /usr/include/stdio.h /usr/include/sys/param.h
32 ksrvtgt.o: /usr/include/machine/machparam.h /usr/include/signal.h
33 ksrvtgt.o: /usr/include/sys/types.h ../include/krb.h ../include/mit-copyright.h
34 ksrvtgt.o: ../include/des.h ../include/mit-copyright.h
35
36 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.034797 seconds and 5 git commands to generate.