summaryrefslogtreecommitdiff
path: root/nutemp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-09-20 15:46:34 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2017-09-24 09:03:52 -0400
commit8890494ba31b007b1b138f5e7ebdb35f192a0cfd (patch)
tree9098cc79833240ae87d925eab5c68254d28bbfa5 /nutemp
parentd931f4f69da478fca17257b1725ac68f9b8dc1b7 (diff)
add (back) nutemp makefile
Diffstat (limited to 'nutemp')
-rw-r--r--nutemp/makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/nutemp/makefile b/nutemp/makefile
new file mode 100644
index 0000000000..422317c88c
--- /dev/null
+++ b/nutemp/makefile
@@ -0,0 +1,19 @@
+
+AD = ..
+CXXFLAGS = -g
+CPPFLAGS = -I $(AD)/libs/ardour -I $(AD)/libs/evoral -I $(AD)/libs/pbd -I $(AD)/build/libs/pbd -I $(AD)/libs/timecode
+CPPFLAGS += `pkg-config --cflags glibmm-2.4` `pkg-config --cflags libxml-2.0`
+LDFLAGS = -L $(AD)/build/libs/evoral -levoral -Xlinker -rpath=$(AD)/build/libs/evoral
+LDFLAGS += -L $(AD)/build/libs/pbd -lpbd -Xlinker -rpath=$(AD)/build/libs/pbd
+LDFLAGS += -L $(AD)/build/libs/timecode -ltimecode -Xlinker -rpath=$(AD)/build/libs/timecode
+LDFLAGS += `pkg-config --cflags --libs glibmm-2.4` `pkg-config --cflags --libs libxml-2.0`
+
+all: t
+
+t.o: t.cc t.h
+
+t: t.o
+ $(CXX) $(LDFLAGS) -o $@ $?
+
+clean:
+ rm -f t t.o