Mercurial > hg > vamp-plugin-load-checker
annotate 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 |
rev | line source |
---|---|
Chris@2 | 1 |
Chris@2 | 2 all: helper plugincandidates |
Chris@0 | 3 |
Chris@0 | 4 CXXFLAGS := -Wall -Werror |
Chris@0 | 5 |
Chris@1 | 6 helper: helper.o |
Chris@0 | 7 $(CXX) -o $@ $< -ldl |
Chris@0 | 8 |
Chris@2 | 9 # todo: qmake .pro file |
Chris@2 | 10 CXXFLAGS += -I/usr/include/qt -I/usr/include/qt/QtCore -fPIC -std=c++11 |
Chris@2 | 11 |
Chris@2 | 12 plugincandidates: plugincandidates.o |
Chris@2 | 13 $(CXX) -o $@ $< -lQt5Core -ldl |
Chris@2 | 14 |
Chris@0 | 15 clean: |
Chris@2 | 16 rm helper.o plugincandidates.o |
Chris@0 | 17 |