Revision 62fc2f7d6c41edcf685277a872c68e47a76fb254 authored by Dan Malec on 12 December 2020, 01:50:52 UTC, committed by Dan Malec on 14 December 2020, 02:13:28 UTC
* Add a workflow which builds candidate release artifacts for Linux, OSX, & Windows
* Cache wxWidgets builds for build speed and to not put load on their servers
* Cache download of inno installer to avoid putting load on their servers
* Create a development release
* Fixed compiler error that shows up on OSX CD machines
1 parent 7f090ac
Raw File
Makefile.am
logolibdir=$(pkgdatadir)/logolib

dist_logolib_DATA = RENAME-GRAVE-ACCENT RENAME-NUMBER-SIGN		\
 backslashedp backslashedQ buryall buryname cascade cascade.2 case	\
 closeall combine cond crossmap dequeue do.until do.while edall edn	\
 edns edpl edpls edps emacs.debug ern erpl filep fileQ filter find	\
 for foreach gensym ignore invoke iseq localmake macroexpand map	\
 map.se mdarray mditem mdsetitem Messages Messages.fr Messages.sp	\
 Messages.zh_TW name namelist pen pick pllist poall pon pons pop popl	\
 popls pops pots push Qrest queue quoted reduce remdup remove reverse	\
 rseq savel setpen transfer unburyall unburyname until while xcor	\
 ycor

install-data-hook:
	(cd "$(DESTDIR)$(logolibdir)" && \
	mv -v RENAME-GRAVE-ACCENT '`' && \
	mv -v RENAME-NUMBER-SIGN '#')

uninstall-hook:
	(cd "$(DESTDIR)$(logolibdir)" && \
	rm -f '`' && \
	rm -f '#')
back to top