build-system-specific-makefile-configuration-from-configure-20011031
[openafs.git] / src / des / test / Makefile.in
1 srcdir=@srcdir@
2 include @TOP_OBJDIR@/src/config/Makefile.config
3
4 #  Test programs
5 PROGS = \
6         key_test \
7         testit \
8         verify
9
10 INCDIRS= -I${TOP_OBJDIR}/src/config -I${DESTDIR}/include -I.. 
11 LIBS=-L.. -ldes
12 CFLAGS = ${INCDIRS} ${XCFLAGS}
13
14 all test: $(PROGS)
15
16 clean:
17         $(RM) -f *.o *.a testit verify key_test core
18
19 install:
20
21 kinstall:
22         @echo No kernel source here.
23
24 testit: testit.o 
25         ${CC} ${CFLAGS} testit.o ${LIBS} -o testit
26 verify: verify.o ../libdes.a
27         ${CC} ${CFLAGS} verify.o ${LIBS} -o verify
28 key_test: key_test.o ../libdes.a
29         ${CC} ${CFLAGS} key_test.o ${LIBS} -o key_test
30