all: rescue-cd RSYNC=/usr/bin/rsync -rltvz --exclude \"*.journal\" DEST=. MAKE=make # needed for download #HTTPGET=wget -x -nH --cut-dirs=5 #BASE_URL=http://lart.info/~bwachter/projects/download/dietlinux/current RSYNC_URL=lart.info::DietLinux # DO NOT TOUCH ANYTHING BELOW THIS LINE rescue-cd: download-rescue cd basefiles && make clean && make cdimage cd: download cd basefiles && make clean && make cdimage floppy: download-rescue cd basefiles && make clean && make fdimage .PHONY: downloaad download-rescue clean distclean upload download: $(RSYNC) -rltvz --delete $(RSYNC_URL) . download-rescue: $(RSYNC) -rltvz --delete --exclude=packages --exclude=patches --exclude=floppy_images $(RSYNC_URL) #download-http: #$(HTTPGET) $(BASE_URL)/filelist_base #(for i in `cat filelist_base`; do $(HTTPGET) $(BASE_URL)/$$i; done) # cleanup clean: cd basefiles && make clean distclean: cd basefiles && make distclean # maintainers only ;) upload: clean $(RSYNC) --delete -e ssh . lart.info:~/public_html/projects/download/dietlinux/current/