8d3957f3b8
Also remove CC and link flags since linking is done in main Makefile
10 lines
132 B
Makefile
10 lines
132 B
Makefile
DEPS =
|
|
OBJS = datastore.o filestore.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS) -std=c99
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|