2016-11-07 16:34:08 -05:00
|
|
|
CC = gcc
|
2016-11-10 08:08:22 -05:00
|
|
|
CFLAGS = -O0 -I../../include -g3
|
2016-11-07 16:34:08 -05:00
|
|
|
LFLAGS =
|
2016-11-10 12:04:48 -05:00
|
|
|
DEPS = ../../include/libp2p/crypto/encoding/base58.h ../../include/libp2p/crypto/encoding/base64.h \
|
2016-11-13 20:55:11 -05:00
|
|
|
../../include/libp2p/crypto/encoding/x509.h ../../include/libp2p/crypto/encoding/base16.h
|
|
|
|
OBJS = base58.o base64.o x509.o base16.o
|
2016-11-07 16:34:08 -05:00
|
|
|
|
|
|
|
%.o: %.c $(DEPS)
|
|
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
|
|
|
|
|
|
|
|
all: $(OBJS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|