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