c-ipfs/commands/Makefile

13 lines
157 B
Makefile
Raw Normal View History

2016-10-27 01:16:25 +00:00
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