Artifact 10ea439cf8352bc38177df1aa262eeb958f4e81ddb50e57724de96857718b6d2:
- File Makefile — part of check-in [e90770a5a7] at 2019-05-02 14:23:10 on branch trunk — Ensure correct casting (user: rkeene, size: 489) [annotate] [blame] [check-ins using]
all: example.so example.c: $(shell find example -type f) $(shell find lib -type f) xvfs.c.rvt xvfs-create Makefile ./xvfs-create --directory example --name example > example.c.new mv example.c.new example.c example.o: example.c xvfs-core.h Makefile cc -Wall -I. -o example.o -c example.c example.so: example.o Makefile cc -shared -o example.so example.o test: @echo not implemented clean: rm -f example.so example.o example.c distclean: clean .PHONY: all clean distclean test