10 lines
136 B
Makefile
10 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)
|