Files @ 3f0977faba37
Branch filter:

Location: EI/VirtualLeaf/src/Makefile

Michael Guravage
Tweaked project files to delete/regenerate parameter and pardialog files only if perl is installed. Added new top-level Makefiles. See ChangeLogs for more details.

--
user: Michael Guravage <michael.guravage@cwi.nl>
branch 'default'
added src/Makefile
added src/build_models/Makefile
added src/parameter.cpp
added src/parameter.h
added src/pardialog.cpp
added src/pardialog.h
changed .hgignore
changed src/ChangeLog
changed src/VirtualLeaf.pro
changed src/build_models/ChangeLog
changed src/libplugin.pro
# $Id$

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