Makefile now debugged

This commit is contained in:
2018-12-05 16:38:03 +01:00
parent 9729f5ee02
commit 2c702e667e
3 changed files with 17 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
#
# must be run with gnu make
#
CC = gcc
funcs.o: funcs.c funcs.h Makefile
gcc -Wall -c $<
fake-values: fake-values.c funcs.o Makefile
gcc -Wall $< funcs.o -o $@