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