tinyramfs/test/Makefile

17 lines
145 B
Makefile
Raw Normal View History

2021-08-05 11:33:47 +05:30
.POSIX:
.SUFFIXES:
.SUFFIXES: .test
TEST = bare luks lvm zfs
all: ${TEST}
.test:
./$< > $@.out 2>&1
clean:
rm -f *.out
.PHONY: all clean