c-libp2p/record/Makefile

11 lines
136 B
Makefile

DEPS =
OBJS = record.o message.o message_handler.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
all: $(OBJS)
clean:
rm -f $(OBJS)