Lines of
Makefile
from check-in e90770a5a7
that are changed by the sequence of edits moving toward
check-in f74a2e47ab:
1: all: example.so
2:
3: example.c: $(shell find example -type f) $(shell find lib -type f) xvfs.c.rvt xvfs-create Makefile
4: ./xvfs-create --directory example --name example > example.c.new
5: mv example.c.new example.c
6:
7: example.o: example.c xvfs-core.h Makefile
e90770a5a7 2019-05-02 8: cc -Wall -I. -o example.o -c example.c
9:
10: example.so: example.o Makefile
e90770a5a7 2019-05-02 11: cc -shared -o example.so example.o
12:
e90770a5a7 2019-05-02 13: test:
e90770a5a7 2019-05-02 14: @echo not implemented
15:
16: clean:
17: rm -f example.so example.o example.c
18:
19: distclean: clean
20:
21: .PHONY: all clean distclean test