DD2-monitor/serial/Makefile

10 lines
143 B
Makefile
Raw Normal View History

2018-12-13 02:06:18 +11:00
2018-12-13 06:07:49 +11:00
OPT = -Wall -DDEBUG_LEVEL=1
2018-12-13 02:06:18 +11:00
serial.o: serial.c serial.h Makefile
2018-12-13 06:07:49 +11:00
gcc ${OPT} -c $<
2018-12-13 02:06:18 +11:00
t: t.c serial.o Makefile
2018-12-13 06:07:49 +11:00
gcc ${OPT} $< serial.o -o $@
2018-12-13 02:06:18 +11:00