Artifact 9eb3bcec6c0daea0cc0c1eada52d4c8ff188e2541d53d25ffe1ee0e520538876:
- File Makefile — part of check-in [0a9369ff13] at 2019-05-02 14:21:25 on branch trunk — Added bare example (user: rkeene, size: 456) [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 ./xvfs-create --directory example --name example > example.c.new mv example.c.new example.c example.o: example.c xvfs-core.h cc -I. -o example.o -c example.c example.so: example.o 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