xbps-fetch and xbps-pkgdb in one utility. Bump XBPS_RELVER to 20091124-1. --HG-- extra : convert_revision : xtraeme%40gmail.com-20091124115947-hb9cp7vp3tyhq64o
		
			
				
	
	
		
			30 lines
		
	
	
		
			467 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			467 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include ../vars.mk
 | 
						|
 | 
						|
SUBDIRS =	xbps-uhelper
 | 
						|
SUBDIRS +=	xbps-repo
 | 
						|
SUBDIRS +=	xbps-bin
 | 
						|
 | 
						|
.PHONY: all
 | 
						|
all:
 | 
						|
	@for dir in $(SUBDIRS); do		\
 | 
						|
		$(MAKE) -C $$dir || exit 1;	\
 | 
						|
	done
 | 
						|
 | 
						|
.PHONY: install
 | 
						|
install:
 | 
						|
	@for dir in $(SUBDIRS); do		\
 | 
						|
		$(MAKE) -C $$dir install || exit 1;	\
 | 
						|
	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 || exit 1;	\
 | 
						|
	done
 |