c-ipfs/merkledag/Makefile

19 lines
325 B
Makefile
Raw Permalink Normal View History

2016-12-05 15:50:17 +00:00
CC = gcc
2019-01-02 17:01:30 +00:00
CFLAGS = -O0 -I../include -I../c-libp2p/include -I../c-libp2p/c-multihash/include -I../c-libp2p/c-multiaddr/include -I../c-libp2p/c-protobuf -Wall -std=gnu99
2016-12-05 15:50:17 +00:00
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
2016-12-19 14:03:28 +00:00
OBJS = merkledag.o node.o
2016-12-05 15:50:17 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o