diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile.helper	Wed Apr 13 09:12:04 2016 +0100
@@ -0,0 +1,11 @@
+
+all:	helper
+
+CXXFLAGS	:= -Wall -Werror 
+
+helper:	helper.o
+		$(CXX) -o $@ $< -ldl
+
+clean:
+		rm helper.o
+