8d3957f3b8
Also remove CC and link flags since linking is done in main Makefile
12 lines
212 B
Makefile
12 lines
212 B
Makefile
DEPS =
|
|
OBJS = rsa.o sha256.o sha512.o sha1.o key.o peerutils.o ephemeral.o aes.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
all: $(OBJS)
|
|
cd encoding; make all;
|
|
|
|
clean:
|
|
rm -f *.o
|
|
cd encoding; make clean;
|