warzone2100/data/Makefile.am

24 lines
835 B
Makefile
Raw Normal View History

## Process this file with automake to produce Makefile.in
ZIPLIST = 01 02 03 04 05 06 07 08 09 10 11 anims audio components effects features \
gamedesc.lev images messages misc multiplay novideo.rpl palette.bin script \
sequenceaudio stats structs texpages wrf
install-data-local:
[ -d 01 ] && { zip -ru9 warzone.wz $(ZIPLIST) -x *svn* || zip -T warzone.wz ; } || true
[ -d "$(DESTDIR)$(datadir)" ] || $(mkdir_p) "$(DESTDIR)$(datadir)"
[ -f warzone.wz ] && $(INSTALL_DATA) warzone.wz $(DESTDIR)$(datadir)/ || true
uninstall-local:
rm -f $(DESTDIR)$(datadir)/warzone.wz
clean-local:
rm -f warzone.wz
installcheck:
[ -f warzone.wz ] && zip -T warzone.wz || true
dist-hook:
[ -d 01 ] && { zip -ru9 warzone.wz $(ZIPLIST) -x *svn* || zip -T warzone.wz ; } || true
[ -d 01 ] && cp -fu warzone.wz $(DESTDIR)$(distdir) || true