X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=themes%2FFancy%2FMakefile;fp=themes%2FFancy%2FMakefile;h=5515deb35d4aa240f9c6edcb0cc71715477bb90b;hb=0fd792a7878e37d6c3d22face9ce8ce980154b55;hp=0000000000000000000000000000000000000000;hpb=c503d26f43b62f4de2a6d4e898239d3dc1f46f2c;p=xboard.git diff --git a/themes/Fancy/Makefile b/themes/Fancy/Makefile new file mode 100644 index 0000000..5515deb --- /dev/null +++ b/themes/Fancy/Makefile @@ -0,0 +1,93 @@ +srcdir = . + +DATADIR = `xboard --show-config Datadir` +PACKAGE = xb_pieces_fancy + +all: + @echo " " use \"sudo make install\" for system-wide install + +install: ${ALL} ${srcdir}/*/* + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/AlfonsoX + cp -u ${srcdir}/AlfonsoX/*.svg $(DESTDIR)$(DATADIR)/themes/AlfonsoX + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Chessicons + cp -u ${srcdir}/Chessicons/*.svg $(DESTDIR)$(DATADIR)/themes/Chessicons + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/ChrisDesign + cp -u ${srcdir}/ChrisDesign/*.svg $(DESTDIR)$(DATADIR)/themes/ChrisDesign + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Condal + cp -u ${srcdir}/Condal/*.svg $(DESTDIR)$(DATADIR)/themes/Condal + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Fantasy + cp -u ${srcdir}/Fantasy/*.svg $(DESTDIR)$(DATADIR)/themes/Fantasy + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Glass + cp -u ${srcdir}/Glass/*.svg $(DESTDIR)$(DATADIR)/themes/Glass + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Kilfiger + cp -u ${srcdir}/Kilfiger/*.svg $(DESTDIR)$(DATADIR)/themes/Kilfiger + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Magnetic + cp -u ${srcdir}/Magnetic/*.svg $(DESTDIR)$(DATADIR)/themes/Magnetic + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Maya + cp -u ${srcdir}/Maya/*.svg $(DESTDIR)$(DATADIR)/themes/Maya + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Montreal + cp -u ${srcdir}/Montreal/*.svg $(DESTDIR)$(DATADIR)/themes/Montreal + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Motif + cp -u ${srcdir}/Motif/*.svg $(DESTDIR)$(DATADIR)/themes/Motif + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Pirat + cp -u ${srcdir}/Pirat/*.svg $(DESTDIR)$(DATADIR)/themes/Pirat + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/QwertyXP20000 + cp -u ${srcdir}/QwertyXP20000/*.svg $(DESTDIR)$(DATADIR)/themes/QwertyXP20000 + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Regular + cp -u ${srcdir}/Regular/*.svg $(DESTDIR)$(DATADIR)/themes/Regular + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Simple + cp -u ${srcdir}/Simple/*.svg $(DESTDIR)$(DATADIR)/themes/Simple + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Spatial + cp -u ${srcdir}/Spatial/*.svg $(DESTDIR)$(DATADIR)/themes/Spatial + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/Tribal + cp -u ${srcdir}/Tribal/*.svg $(DESTDIR)$(DATADIR)/themes/Tribal + install -d -m0755 $(DESTDIR)$(DATADIR)/themes/USCF-Metal + cp -u ${srcdir}/USCF-Metal/*.svg $(DESTDIR)$(DATADIR)/themes/USCF-Metal + +dist-clean: + rm -f md5sums + +dist: + rm -f $(PACKAGE).tar $(PACKAGE).tar.gz + (md5sum Makefile */* > md5sums) || true + tar -cvvf $(PACKAGE).tar . + gzip $(PACKAGE).tar + +uninstall: + rm -f $(DESTDIR)$(DATADIR)/themes/AlfonsoX/* + rmdir $(DESTDIR)$(DATADIR)/themes/AlfonsoX || true + rm -f $(DESTDIR)$(DATADIR)/themes/Chessicons/* + rmdir $(DESTDIR)$(DATADIR)/themes/Chessicons || true + rm -f $(DESTDIR)$(DATADIR)/themes/ChrisDesign/* + rmdir $(DESTDIR)$(DATADIR)/themes/ChrisDesign || true + rm -f $(DESTDIR)$(DATADIR)/themes/Condal/* + rmdir $(DESTDIR)$(DATADIR)/themes/Condal || true + rm -f $(DESTDIR)$(DATADIR)/themes/Fantasy/* + rmdir $(DESTDIR)$(DATADIR)/themes/Fantasy || true + rm -f $(DESTDIR)$(DATADIR)/themes/Glass/* + rmdir $(DESTDIR)$(DATADIR)/themes/Glass || true + rm -f $(DESTDIR)$(DATADIR)/themes/Kilfiger/* + rmdir $(DESTDIR)$(DATADIR)/themes/Kilfiger || true + rm -f $(DESTDIR)$(DATADIR)/themes/Magnetic/* + rmdir $(DESTDIR)$(DATADIR)/themes/Magnetic || true + rm -f $(DESTDIR)$(DATADIR)/themes/Maya/* + rmdir $(DESTDIR)$(DATADIR)/themes/Maya || true + rm -f $(DESTDIR)$(DATADIR)/themes/Montreal/* + rmdir $(DESTDIR)$(DATADIR)/themes/Montreal || true + rm -f $(DESTDIR)$(DATADIR)/themes/Motif/* + rmdir $(DESTDIR)$(DATADIR)/themes/Motif || true + rm -f $(DESTDIR)$(DATADIR)/themes/Pirat/* + rmdir $(DESTDIR)$(DATADIR)/themes/Pirat || true + rm -f $(DESTDIR)$(DATADIR)/themes/QwertyXP20000/* + rmdir $(DESTDIR)$(DATADIR)/themes/QwertyXP20000 || true + rm -f $(DESTDIR)$(DATADIR)/themes/Regular/* + rmdir $(DESTDIR)$(DATADIR)/themes/Regular || true + rm -f $(DESTDIR)$(DATADIR)/themes/Simple/* + rmdir $(DESTDIR)$(DATADIR)/themes/Simple || true + rm -f $(DESTDIR)$(DATADIR)/themes/Spatial/* + rmdir $(DESTDIR)$(DATADIR)/themes/Spatial || true + rm -f $(DESTDIR)$(DATADIR)/themes/Tribal/* + rmdir $(DESTDIR)$(DATADIR)/themes/Tribal || true + rm -f $(DESTDIR)$(DATADIR)/themes/USCF-Metal/* + rmdir $(DESTDIR)$(DATADIR)/themes/USCF-Metal || true +