Skip to content
Snippets Groups Projects
Makefile.am 530 B
Newer Older
themedir = $(datadir)/themes/Windowck-dark/unity

all: generate all-am

generate:
	echo -e "Going to convert xpm to png files"; \
	./generator.py;

install-data: install-data-local

install-data-local:
	echo -e "Going to copy files for $$size"; \
	for file in `find . -name "*.png"`; do \
		$(mkdir_p) $(DESTDIR)$(themedir); \
		$(install_sh_DATA) $$file $(DESTDIR)$(themedir); \

clean: clean-data-local clean-am

clean-data-local:
	echo -e "Going to clean png files"; \

uninstall-local: uninstall-am