annotate Makefile.helper @ 6:61dbb18f2369

Logging, timeouts
author Chris Cannam
date Wed, 13 Apr 2016 18:41:49 +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