/[svn]/libgig/trunk/src/Makefile.am
ViewVC logotype

Contents of /libgig/trunk/src/Makefile.am

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2572 - (show annotations) (download)
Thu May 22 12:14:04 2014 UTC (9 years, 11 months ago) by schoenebeck
File size: 843 byte(s)
* Added fork of libakai (this fork provides Linux support) which
  allows reading AKAI medias. Comes with two command line tools
  'akaidump' and 'akaiextract'. Also added a man page for each
  tool.

1 # to prevent compile errors on some systems
2 AM_CXXFLAGS = -pedantic -Wreturn-type
3
4 pkglib_LTLIBRARIES = libgig.la libakai.la
5
6 libgigincludedir = $(includedir)
7 libgiginclude_HEADERS = RIFF.h DLS.h SF.h gig.h Korg.h
8 libgig_la_SOURCES = RIFF.cpp DLS.cpp SF.cpp gig.cpp Korg.cpp
9 libgig_la_LDFLAGS = -no-undefined -version-info @LIBGIG_SHARED_VERSION_INFO@ @LIBGIG_SHLIB_VERSION_ARG@
10 if WIN32
11 libgig_la_LIBADD = -lrpcrt4
12 endif
13 if MAC
14 libgig_la_LDFLAGS += -framework CoreFoundation
15 endif
16
17 libakaiincludedir = $(includedir)
18 libakaiinclude_HEADERS = Akai.h
19 libakai_la_SOURCES = Akai.cpp
20 libakai_la_LDFLAGS = -no-undefined -version-info @LIBAKAI_SHARED_VERSION_INFO@ @LIBAKAI_SHLIB_VERSION_ARG@
21 if WIN32
22 libakai_la_LIBADD = -lrpcrt4
23 endif
24 if MAC
25 libakai_la_LDFLAGS += -framework CoreFoundation
26 endif
27
28 EXTRA_DIST = helper.h
29
30 SUBDIRS = . tools testcases

  ViewVC Help
Powered by ViewVC