DD2-monitor/Makefile

17 lines
230 B
Makefile
Raw Normal View History

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