~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to tools/omf/Makefile

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CXXFLAGS = -g -I../../libs/pbd \
 
2
           $(shell pkg-config --cflags sqlite3) \
 
3
           $(shell pkg-config --cflags libxml-2.0) \
 
4
           $(shell pkg-config --cflags glibmm-2.4) \
 
5
           $(shell pkg-config --cflags sndfile)
 
6
 
 
7
LDFLAGS = -L../../build/default/libs/pbd -lpbd  \
 
8
          $(shell pkg-config --libs sqlite3) \
 
9
          $(shell pkg-config --libs libxml-2.0) \
 
10
          $(shell pkg-config --libs sndfile) \
 
11
 
 
12
omftool: omftool.o loader.o
 
13
        $(CXX) -o $@ omftool.o loader.o $(LDFLAGS)
 
14
 
 
15
loader.o:  loader.cc omftool.h
 
16
omftool.o: omftool.cc omftool.h