Move libxbps shell tests to libxbps/shell and remove unused test-shell.mk.

This commit is contained in:
Juan RP
2013-11-06 11:52:02 +01:00
parent 6952144d60
commit b7d91b490c
11 changed files with 8 additions and 54 deletions

View File

@@ -1,22 +0,0 @@
-include $(TOPDIR)/config.mk
.PHONY: all
all: $(TEST)
.PHONY: clean
clean:
-rm -f $(TEST)
.PHONY: install
install: all
install -d $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)
install -m755 $(TEST).sh $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)/$(TEST)
ifdef EXTRA_FILES
for f in $(EXTRA_FILES); do \
install -m644 $${f} $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR); \
done
endif
.PHONY: uninstall
uninstall:
-rm -f $(DESTDIR)$(TESTSDIR)/$(TESTSSUBDIR)/$(TEST)