8d3957f3b8
Also remove CC and link flags since linking is done in main Makefile
10 lines
196 B
Makefile
10 lines
196 B
Makefile
DEPS =
|
|
OBJS = string_list.o vector.o linked_list.o logger.o urlencode.o thread_pool.o threadsafe_buffer.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS) -std=c99
|
|
|
|
all: $(OBJS)
|
|
|
|
clean:
|
|
rm -f *.o
|