blob: 459383db05df5c2c34327db41a0e2846eb4d46b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
include ../../ssl_common.mk
CFLAGS += -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
|