
all: all_subdirs fullfilelist

all_subdirs: subdirs 
	for subdir in `cat subdirs`; do \
	  $(MAKE) -C $$subdir ; \
	done;
	date > timestamp
	rm -f fullfilelist

fullfilelist:
	rsync --cvs-exclude --exclude=timestamp --exclude-from=/etc/rsyncd/all.exclude --exclude-from=/etc/rsyncd/kde.exclude -r . > fullfilelist	
	touch --reference timestamp fullfilelist


