DD2-monitor/Makefile

17 lines
230 B
Makefile
Raw Normal View History

2018-12-06 02:38:03 +11:00
#
# must be run with gnu make
#
CC = gcc
2018-12-08 23:02:24 +11:00
essai: essai.c funcs.o Makefile
gcc -Wall $< funcs.o -o $@
2018-12-06 02:38:03 +11:00
funcs.o: funcs.c funcs.h Makefile
gcc -Wall -c $<
fake-values: fake-values.c funcs.o Makefile
gcc -Wall $< funcs.o -o $@