blob: bab7c17f0b0c065c211fe15acdb4bee7f7356a20 [file] [log] [blame]
SCRIPTS = android-xfstests \
gce-xfstests \
kvm-xfstests \
qemu-xfstests
KBUILD_SCRIPTS = kbuild kbuild32 install-kconfig
bindir= $(HOME)/bin
all: $(SCRIPTS) $(KBUILD_SCRIPTS)
clean:
rm -f $(SCRIPTS) $(KBUILD_SCRIPTS)
install: $(SCRIPTS) $(KBUILD_SCRIPTS)
mkdir -p $(DESTDIR)$(bindir)
for i in $(SCRIPTS) $(KBUILD_SCRIPTS) ; do \
rm -f $(DESTDIR)$(bindir)/$$i ; \
install $$i $(DESTDIR)$(bindir)/$$i; \
done
$(SCRIPTS): %: run-fstests/%.sh.in
sed -e "s;@DIR@;$$(pwd);" < $< > $@
chmod +x $@
$(KBUILD_SCRIPTS): %: kernel-build/%.sh.in
sed -e "s;@DIR@;$$(pwd);" < $< > $@
chmod +x $@