diff --git a/src/Makefile b/src/Makefile new file mode 100644 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,27 @@ +# $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