annotate Makefile.helper @ 5:74064d6f5e07

Licence
author Chris Cannam
date Wed, 13 Apr 2016 12:06:26 +0100
parents 3bae396cf8e0
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