c-libp2p/record/Makefile

15 lines
243 B
Makefile
Raw Normal View History

CC = gcc
2017-02-20 13:19:22 +00:00
CFLAGS = -O0 -I../include -I../../c-protobuf -I../../c-multihash/include -I../../c-multiaddr/include -g3
LFLAGS =
DEPS =
2017-02-17 04:13:16 +00:00
OBJS = record.o message.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f $(OBJS)