aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
blob: b03924b9fe79ba3d27aeb4c1940ddade7be7f610 (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
25
26
27
28
29
30
31
32
33
34
35
36
# @configure_input@

INC		= cryptech.h
LIB		= libcryptech.a
OBJ		= ${IO_OBJ} csprng.o hash.o

IO_OBJ		= ${IO_OBJ_@FPGA_BUS@}
IO_OBJ_EIM	= hal_io_eim.o novena-eim.o
IO_OBJ_I2C 	= hal_io_i2c.o

CC		= @CC@
CFLAGS		= @CFLAGS@
LDFLAGS		= @LDFLAGS@

prefix		= @prefix@
exec_prefix	= @exec_prefix@
includedir	= @includedir@
libdir		= @libdir@

all: ${LIB}

${OBJ}: ${INC}

${LIB}: ${OBJ}
	ar rcs $@ $^

install: ${LIB} ${INC}
	install ${LIB} ${libdir}
	install ${INC} ${includedir}

uninstall:
	cd ${libdir}; rm -f ${LIB}
	cd ${includedir}; rm -f ${INC}

clean:
	rm -f ${OBJ} ${LIB}