view 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
line wrap: on
line source

all:	helper

CXXFLAGS	:= -Wall -Werror 

helper:	helper.o
		$(CXX) -o $@ $< -ldl

clean:
		rm helper.o