Files
linuxkit/alpine/packages/transfused/Makefile
David Sheets 9a9e35b4ba Add a FUSE proxy written in C
This should improve portability, be more palatable for future
distribution, and enable lower-level control. Addresses #8.
2016-02-12 14:07:43 +00:00

16 lines
332 B
Makefile

.PHONY: all
DEPS=transfused.c
all: Dockerfile $(DEPS)
docker build -t transfused:build .
docker run transfused:build cat transfused > transfused
chmod 755 transfused
transfused: $(DEPS)
gcc -g -static -Wall -Werror -o transfused transfused.c
clean:
rm -f transfused
docker images -q transfused:build | xargs docker rmi -f