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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 11 - (show annotations) (download)
Sun Nov 16 17:47:00 2003 UTC (20 years, 4 months ago) by schoenebeck
File size: 681 byte(s)
* src/gig.cpp: fixed bug in decompression algorithm which caused it not to
  detect the end of a stream
* various endian corrections (successfully tested now on ppc)
* minor adjustments to avoid compile errors on some systems
  (using now pow() instead of powl() and --pedantic g++ compiler switch)
* src/RIFF.cpp, src/RIFF.h: added additional API documentation

1 bin_PROGRAMS = rifftree gigdump dlsdump gigextract
2
3 # set the include path found by configure
4 INCLUDES= $(all_includes)
5
6 # to prevent compile errors on some systems
7 AM_CXXFLAGS = -pedantic
8
9 # the library search path.
10 rifftree_SOURCES = rifftree.cpp
11 lib_LIBRARIES = libgig.a
12 libgig_a_SOURCES = RIFF.cpp RIFF.h DLS.cpp DLS.h gig.cpp gig.h
13 rifftree_LDADD = $(top_builddir)/src/libgig.a
14 gigdump_SOURCES = gigdump.cpp
15 gigdump_LDADD = $(top_builddir)/src/libgig.a
16
17
18 dlsdump_SOURCES = dlsdump.cpp
19 dlsdump_LDADD = $(top_builddir)/src/libgig.a
20
21
22 applnkApplicationdir = $(kde_appsdir)/Application
23 gigextract_SOURCES = gigextract.cpp
24 gigextract_LDADD = $(top_builddir)/src/libgig.a -ldl

  ViewVC Help
Powered by ViewVC