c-ipfs/cid/Makefile

19 lines
318 B
Makefile
Raw Normal View History

2016-11-13 21:01:51 -05:00
CC = gcc
2019-01-02 14:01:30 -03: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-11-13 21:01:51 -05:00
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
2017-01-05 18:55:39 -03:00
OBJS = cid.o set.o
2016-11-13 21:01:51 -05:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o