Files
@ aaba9e8828d6
Branch filter:
Location: EI/VirtualLeaf/src/Makefile - annotation
aaba9e8828d6
516 B
text/x-makefile
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
--
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
5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc 5564fc0d72bc | # $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
|