diff Makefile @ 2:2288c1d05c28

Simple Qt-based class to invoke the helper
author Chris Cannam
date Tue, 12 Apr 2016 17:38:57 +0100
parents fbffc249990c
children
line wrap: on
line diff
--- a/Makefile	Tue Apr 12 13:33:00 2016 +0100
+++ b/Makefile	Tue Apr 12 17:38:57 2016 +0100
@@ -1,9 +1,17 @@
+
+all:	helper plugincandidates
 
 CXXFLAGS	:= -Wall -Werror 
 
 helper:	helper.o
 		$(CXX) -o $@ $< -ldl
 
+# todo: qmake .pro file
+CXXFLAGS	+= -I/usr/include/qt -I/usr/include/qt/QtCore -fPIC -std=c++11
+
+plugincandidates:	plugincandidates.o
+		$(CXX) -o $@ $< -lQt5Core -ldl
+
 clean:
-		rm helper.o
+		rm helper.o plugincandidates.o