13 lines
168 B
Makefile
13 lines
168 B
Makefile
#
|
|
# 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 $@
|
|
|