2016-11-07 21:34:08 +00:00
|
|
|
LFLAGS =
|
2016-11-10 17:04:48 +00:00
|
|
|
DEPS = ../../include/libp2p/crypto/encoding/base58.h ../../include/libp2p/crypto/encoding/base64.h \
|
2016-11-28 21:12:11 +00:00
|
|
|
../../include/libp2p/crypto/encoding/x509.h ../../include/libp2p/crypto/encoding/base16.h \
|
|
|
|
../../include/libp2p/crypto/encoding/base32.h
|
|
|
|
OBJS = base58.o base64.o x509.o base16.o base32.o
|
2016-11-07 21:34:08 +00:00
|
|
|
|
|
|
|
%.o: %.c $(DEPS)
|
2018-11-29 12:15:27 +00:00
|
|
|
$(CC) -c -o $@ $< $(CFLAGS) -std=c99
|
2016-11-07 21:34:08 +00:00
|
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|