c-ipfs/util/Makefile

19 lines
294 B
Makefile
Raw Normal View History

2016-12-23 03:51:06 +00:00
CC = gcc
CFLAGS = -O0 -I../include -I../../c-libp2p/include -I../../c-multihash/include -I../../c-multiaddr/include -I../../c-protobuf -Wall
ifdef DEBUG
CFLAGS += -g3
endif
LFLAGS =
DEPS =
2017-03-21 18:40:46 +00:00
OBJS = errs.o time.o
2016-12-23 03:51:06 +00:00
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o