79f9f34775
fetchLastErrString. Hook xbps-fetch to the tree and use the new function to print errors. --HG-- extra : convert_revision : xtraeme%40gmail.com-20091030021303-6wu9sri5o8kgvfwl
34 lines
523 B
Makefile
34 lines
523 B
Makefile
include ../vars.mk
|
|
|
|
SUBDIRS = xbps-bin
|
|
SUBDIRS += xbps-cmpver
|
|
SUBDIRS += xbps-digest
|
|
SUBDIRS += xbps-fetch
|
|
SUBDIRS += xbps-pkgdb
|
|
SUBDIRS += xbps-repo
|
|
SUBDIRS += xbps-fetch
|
|
|
|
.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
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
for bin in $(SUBDIRS); do \
|
|
-rm -f $(SBINDIR)/$$bin; \
|
|
done
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
for dir in $(SUBDIRS); do \
|
|
$(MAKE) -C $$dir clean; \
|
|
done
|