Files @ aaba9e8828d6
Branch filter:

Location: EI/VirtualLeaf/src/Makefile

Roeland Merks
Added to new menu options: edit->ResetChemicals and edit->ResetTransporters, which allows you to set only the chemicals or only the transporters to the initial values. I needed this for preparing a suitable initial condition for Tutorial 6 and thought it would be useful for the main distribution.

--
user: Roeland Merks <roeland.merks@cwi.nl>
branch 'default'
changed src/build_models/Makefile
changed src/canvas.cpp
changed src/canvas.h
changed src/mesh.cpp
changed src/mesh.h
# $Id: Makefile,v 3f0977faba37 2010/06/03 15:54:37 michael $

QMAKE = qmake

all: VirtualLeaf libplugin plugins

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

clean:
	make -f Makefile.libplugin clean
	make -f Makefile.VirtualLeaf clean
	make -C build_models clean

#finis