c-ipfs/commands/cli/Makefile

14 lines
192 B
Makefile
Raw Normal View History

2016-10-27 13:11:34 -05:00
CC = gcc
2016-12-05 06:54:21 -05:00
CFLAGS = -O0 -I../../include -I../../../c-libp2p/include -Wall
2016-10-27 13:11:34 -05:00
LFLAGS =
DEPS = parse.h
OBJS = parse.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o