c-ipfs/merkledag/Makefile

19 lines
292 B
Makefile
Raw Normal View History

2016-12-05 15:50:17 +00:00
CC = gcc
2016-12-12 11:27:06 +00:00
CFLAGS = -O0 -I../include -I../../c-libp2p/include -I../../c-multihash/include -I../../c-multiaddr/include -I../../c-protobuf -Wall
2016-12-05 15:50:17 +00:00
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
OBJS = merkledag.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o