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

obj = chacha.o


all: libchacha.a
dep: all

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

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

clean:
	rm -f *.o *.a