Remove xbps bins and lib. They are now handled in launchpad.

--HG--
extra : convert_revision : b86cccec88eb76aaf9d81570b73d5a0413de9565
This commit is contained in:
Juan RP
2009-08-18 16:29:22 +02:00
parent 2437f8d351
commit 2251cfdb20
53 changed files with 0 additions and 8691 deletions

View File

@@ -1,31 +0,0 @@
include vars.mk
SUBDIRS = lib bin etc
.PHONY: all
all:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir; \
done
.PHONY: install
install:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir install; \
done
@echo
@echo "Binaries have been installed into $(SBINDIR)."
@echo "Librares have been installed into $(LIBDIR)."
@echo
@echo "WARNING: Don't forget to rerun ldconfig(1)."
@echo
uninstall:
-rm -f $(SBINDIR)/xbps-*
-rm -f $(LIBDIR)/libxbps.so*
.PHONY: clean
clean:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir clean; \
done