Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'qt/org.eclipse.cdt.qt.core/templates/project/helloWorld/qtQuick2/Makefile')
-rw-r--r--qt/org.eclipse.cdt.qt.core/templates/project/helloWorld/qtQuick2/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/qt/org.eclipse.cdt.qt.core/templates/project/helloWorld/qtQuick2/Makefile b/qt/org.eclipse.cdt.qt.core/templates/project/helloWorld/qtQuick2/Makefile
new file mode 100644
index 00000000000..5322ef46d12
--- /dev/null
+++ b/qt/org.eclipse.cdt.qt.core/templates/project/helloWorld/qtQuick2/Makefile
@@ -0,0 +1,13 @@
+QMAKE = {{qmake}}
+
+OUTDIR = build
+
+$(OUTDIR)/Makefile:
+ @mkdir -p $(OUTDIR)
+ $(QMAKE) -o $(OUTDIR)/Makefile {{baseName}}.pro
+
+all: $(OUTDIR)/Makefile
+ $(MAKE) -C $(OUTDIR)
+
+clean:
+ rm -fr $(OUTDIR)

Back to the top