changeset 4:25499f505d0e

Move some things around
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 05 Feb 2016 16:10:56 +0000
parents 4fc5370786c8
children 6e8607ebad03
files Makefile
diffstat 1 files changed, 0 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Aug 27 16:22:04 2015 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-
-CXX		:= g++
-
-OBJECTS		:= test.o vampipe_apply.o vampipe_types.o
-
-CXXFLAGS	:= -Wno-unknown-pragmas -Iext -g -std=c++11 -Wall
-
-LDFLAGS		+= -lvamp-hostsdk -ldl
-
-test:	$(OBJECTS)
-	$(CXX) -o $@ $^ $(LDFLAGS)
-
-clean:
-	rm -f $(OBJECTS)
-
-