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

obj = chacha.o


all: libchacha.a
dep: all

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

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

clean:
	rm -f *.o *.a