mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
add (back) nutemp makefile
This commit is contained in:
parent
d931f4f69d
commit
8890494ba3
1 changed files with 19 additions and 0 deletions
19
nutemp/makefile
Normal file
19
nutemp/makefile
Normal file
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue