annotate Makefile.helper @ 3:3bae396cf8e0

Start to organise as a Qt project, with a main (command-line) executable
author Chris Cannam
date Wed, 13 Apr 2016 09:12:04 +0100
parents Makefile@2288c1d05c28
children
rev   line source
Chris@2 1
Chris@3 2 all: helper
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@3 9 clean:
Chris@3 10 rm helper.o
Chris@2 11