Added xbps-src and its associated code again.

It's better to keep it outside of XBPS.

--HG--
extra : convert_revision : 34f9c316585b972158d6ee55492c02c9bc5d3fcd
This commit is contained in:
Juan RP
2009-10-18 11:17:26 +02:00
parent 7fbc4b9545
commit 745192ef37
26 changed files with 3867 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
# Toplevel Makefile
#
.PHONY: all
all:
$(MAKE) -C xbps-src
.PHONY: install
install:
$(MAKE) -C xbps-src install
.PHONY: uninstall
uninstall:
$(MAKE) -C xbps-src uninstall
.PHONY: clean
clean:
$(MAKE) -C xbps-src clean