view 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 source

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 plugincandidates.o