43cc42100497428d8d8f3a7d5b85b8eb7ef52237
[openafs.git] / src / des / test / Makefile.in
1
2 DESTDIR=@DESTDIR@
3 SRCDIR=@SRCDIR@
4 TOP_SRCDIR=@TOP_SRCDIR@
5 SYS_NAME=@AFS_SYSNAME@
6
7 SHELL = /bin/sh
8 include ../../config/Makefile.${SYS_NAME}
9
10
11 #  Test programs
12 PROGS = \
13         key_test \
14         testit \
15         verify
16
17 INCDIRS= -I${TOP_SRCDIR}/config -I${DESTDIR}/include -I.. 
18 LIBS=-L.. -ldes
19 CFLAGS = ${INCDIRS} ${XCFLAGS}
20
21 all test: $(PROGS)
22
23 clean:
24         $(RM) -f *.o *.a testit verify key_test core
25
26 install:
27
28 kinstall:
29         @echo No kernel source here.
30
31 testit: testit.o 
32         ${CC} ${CFLAGS} testit.o ${LIBS} -o testit
33 verify: verify.o ../libdes.a
34         ${CC} ${CFLAGS} verify.o ${LIBS} -o verify
35 key_test: key_test.o ../libdes.a
36         ${CC} ${CFLAGS} key_test.o ${LIBS} -o key_test
37