Files @ 6ce49db23eee
Branch filter:

Location: EI/VirtualLeaf/src/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: VirtualLeaf libplugin plugins tutorials

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

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

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

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

plugins:
	$(MAKE) -C build_models -f Makefile

tutorials:
	$(MAKE) -C build_models -f Makefile
	$(MAKE) -C TutorialCode -f Makefile

clean:
	$(MAKE) -f Makefile.libplugin clean
	$(MAKE) -f Makefile.VirtualLeaf clean
	$(MAKE) -C build_models -f Makefile clean
	$(MAKE) -C TutorialCode -f Makefile clean
ifeq ($(MAKE),make)
	touch VirtualLeaf.pro
	touch libplugin.pro
else
	copy /b VirtualLeaf.pro +,,
	copy /b libplugin.pro +,,
endif

#finis