c-libp2p/utils/Makefile

11 lines
196 B
Makefile
Raw Normal View History

DEPS =
2017-11-30 19:32:36 +00:00
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