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