DD2-monitor/serial/Makefile

17 lines
329 B
Makefile
Raw Normal View History

2018-12-12 16:06:18 +01:00
2018-12-31 17:19:52 +01:00
OPT = -Wall -DDEBUG_LEVEL=0
2019-03-28 12:04:40 +01:00
OBJS = serial.o funcs.o
# ---------------------------------------------------
2018-12-12 16:06:18 +01:00
serial.o: serial.c serial.h Makefile
2018-12-12 20:07:49 +01:00
gcc ${OPT} -c $<
2018-12-12 16:06:18 +01:00
funcs.o: funcs.c serial.h Makefile
gcc ${OPT} -c $<
2019-03-28 12:04:40 +01:00
# ---------------------------------------------------
t: t.c Makefile ${OBJS}
gcc ${OPT} $< ${OBJS} -o $@
2018-12-12 16:06:18 +01:00