summaryrefslogblamecommitdiffstats
path: root/Makefile
blob: e9660c57291beca38c43da7b6816493aa561dd4c (plain) (tree)
1
2
3

                  
                                       















                                                              
#!/usr/bin/make -f

SUBDIRS := etc/xdg/xdg-xebian/Thunar/po

all:
	@echo "Nothing to build, call 'make install' instead."

install:
	mkdir -pv $(DESTDIR)
	cp -a etc usr $(DESTDIR)/.
	# po generation
	for i in $(SUBDIRS); do \
		make -C $(DESTDIR)/$$i; \
		rm -rf $(DESTDIR)/$$i; \
	done
	# remove some remaining files
	find $(DESTDIR) -type f -iname "*.in" | xargs rm -f

# vim:ts=4