c-libp2p/crypto/Makefile

13 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;