blob: 418e3a5b1a1c055789cbca0a44b7550558a5f3e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include ../../Makefile.platform
CFLAGS=$(CFLAGS_PL) $(PIC) -I../include -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS=
obj = poly1305.o
all: $(obj)
dep: all
%.o: %.c
$(CC) $(CFLAGS) -c $<
clean:
rm -f *.o *.a
|