aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.in
blob: 19c68c860f1d143afa4d2555f66fa4bfe3b716fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# @configure_input@

INC		= ../cryptech.h
LIB		= ../libcryptech.a
BIN		= test-aes-key-wrap test-hash test-rsa

CC		= @CC@
CFLAGS		= @CFLAGS@ -I..
LDFLAGS		= @LDFLAGS@ ${LIB}

all: ${BIN}

*.o: ${INC}

${BIN}: ${LIB}

test: all
	for i in ${BIN}; do ./$$i; done

clean:
	rm -f *.o ${BIN}

distclean: clean
	rm -f Makefile