Files @ 03ad6bb2f072
Branch filter:

Location: EI/VirtualLeaf/src/build_models/Makefile

Michael Guravage
Merged my code (8b6e1d8e0734) with Roeland's latest changes (f23676d337db).
# $Id$

QMAKE = qmake

all: plugin_auxingrowth plugin_leaf plugin_meinhardt plugin_test

plugin_auxingrowth: Makefile.plugin_auxingrowth
	make -f Makefile.plugin_auxingrowth

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

plugin_leaf: Makefile.plugin_leaf
	make -f Makefile.plugin_leaf

Makefile.plugin_leaf: plugin_leaf.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_leaf clean
	make -f Makefile.plugin_meinhardt clean
	make -f Makefile.plugin_test clean
	touch plugin_auxingrowth.pro
	touch plugin_leaf.pro
	touch plugin_meinhardt.pro
	touch plugin_test.pro

#finis