c-ipfs/commands/Makefile
2016-10-26 20:16:25 -05:00

13 lines
157 B
Makefile

CC = gcc
CFLAGS = -O0
LFLAGS =
DEPS = argument.h command.h
OBJS = argument.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f *.o