tinyramfs/test/Makefile

15 lines
129 B
Makefile
Raw Normal View History

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