summaryrefslogtreecommitdiff
path: root/code/ecp/crypto/compat/Makefile
blob: 9e96d9ee8ecc67fe8031f1d57be798dcbd54baca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../../Makefile.platform
CFLAGS=$(CFLAGS_PL) $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS=

getentropy = getentropy_osx
obj = explicit_bzero.o timingsafe_memcmp.o timingsafe_bcmp.o # arc4random.o arc4random_uniform.o $(getentropy).o


all: libcompat.a
dep: all

%.o: %.c
	$(CC) $(CFLAGS) -c $<

libcompat.a: $(obj)
	$(AR) rcs $@ $(obj)

clean:
	rm -f *.o *.a