win32.mk
author etisserant <edouard.tisserant@gmail.com>
Tue, 17 May 2022 16:03:04 +0200
changeset 41 77b38c4d0d7f
parent 37 fd09116d3537
child 43 1a2658f109da
permissions -rw-r--r--
Dockerfile: use script rather than alias so that bash doesn't need to be interactive shell with a TTY
# Win32 only distribution

OWN_PROJECTS_EX=CanFestival-3

ide_targets_from_dist: canfestival
	touch $@

CFbuild = installer/CanFestival-3
canfestival: $(msysdir)/.stamp
	rm -rf $(CFbuild)
	$(call get_src_hg,$(CFbuild))
	cd $(CFbuild); \
	./configure --can=tcp_win32 \
				--cc=$(CC) \
				--cxx=$(CXX) \
				--target=win32 \
				--wx=0
	$(MAKE) -C $(CFbuild)
	cd $(CFbuild); find . -name "*.o" -exec rm {} ';' #remove object files only
	touch $@