Files @ 6ce49db23eee
Branch filter:

Location: EI/VirtualLeaf/src/build_models/Makefile

Michael Guravage
Moved gpl3.txt back to the doc directory, and included the doc directory in the binary distribution. Included new MAC installation data.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
added doc/gpl3.txt
added src/VirtualLeaf-install-macosx/01virtualleaf-contents.xml
added src/VirtualLeaf-install-macosx/01virtualleaf.xml
added src/VirtualLeaf-install-macosx/02models-contents.xml
added src/VirtualLeaf-install-macosx/02models.xml
added src/VirtualLeaf-install-macosx/03leaves-contents.xml
added src/VirtualLeaf-install-macosx/03leaves.xml
added src/VirtualLeaf-install-macosx/index.xml
changed .hgignore
changed NEWS
changed src/ChangeLog
changed src/VirtualLeaf-install.nsi
changed src/canvas.cpp
removed ChangeLog
removed src/gpl3.txt
removed src/vleafmacosx_installer.pmdoc/01virtualleaf-contents.xml
removed src/vleafmacosx_installer.pmdoc/01virtualleaf.xml
removed src/vleafmacosx_installer.pmdoc/02models-contents.xml
removed src/vleafmacosx_installer.pmdoc/02models.xml
removed src/vleafmacosx_installer.pmdoc/03leaves-contents.xml
removed src/vleafmacosx_installer.pmdoc/03leaves.xml
removed src/vleafmacosx_installer.pmdoc/index.xml
# $Id$

# Set an environment varible $(MAKE) to the name of the make command
# on your machine, e.g. 'make' on UNIX and 'mingw32-make' on windows.
# Fallback default is UNIX make.

ifeq ($(MAKE),)
	MAKE=make
endif

# Ditto for QMAKE
ifeq ($(QMAKE),)
	QMAKE=qmake
endif

all: plugin_auxingrowth plugin_meinhardt plugin_test

plugin_auxingrowth: Makefile.plugin_auxingrowth
	$(MAKE) -f Makefile.plugin_auxingrowth

Makefile.plugin_auxingrowth: plugin_auxingrowth.pro
	$(QMAKE) -makefile -o $@ $< 

plugin_meinhardt: Makefile.plugin_meinhardt
	$(MAKE) -f Makefile.plugin_meinhardt

Makefile.plugin_meinhardt: plugin_meinhardt.pro
	$(QMAKE) -makefile -o $@ $< 

plugin_test: Makefile.plugin_test
	$(MAKE) -f Makefile.plugin_test

Makefile.plugin_test: plugin_test.pro
	$(QMAKE) -makefile -o $@ $< 

clean:
	$(MAKE) -f Makefile.plugin_auxingrowth clean
	$(MAKE) -f Makefile.plugin_meinhardt clean
	$(MAKE) -f Makefile.plugin_test clean
ifeq ($(MAKE),make)
	touch plugin_auxingrowth.pro
	touch plugin_meinhardt.pro
	touch plugin_test.pro
else
	copy /b plugin_auxingrowth.pro +,,
	copy /b plugin_meinhardt.pro +,,
	copy /b plugin_test.pro +,,

endif

#finis