Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/freealut-1.1.0/src/Makefile.am @ 35

Last change on this file since 35 was 14, checked in by landauf, 17 years ago

added freealut

File size: 966 bytes
Line 
1# The following files should be in our source distribution in addition to the
2# standard ones included by automake itself:
3EXTRA_DIST = helloworld.wav README
4
5# We want to build a libalut library with libtool.
6lib_LTLIBRARIES = libalut.la
7
8# libalut consists of the followin sources and internal headers:
9libalut_la_SOURCES =            \
10        alutBufferData.c        \
11        alutCodec.c             \
12        alutError.c             \
13        alutInit.c              \
14        alutInputStream.c       \
15        alutInternal.h          \
16        alutLoader.c            \
17        alutOutputStream.c      \
18        alutUtil.c              \
19        alutVersion.c           \
20        alutWaveform.c
21
22# We use sin and floor, so we might need -lm, autoconf takes care of this.
23libalut_la_LIBADD = $(LIBM)
24
25# The following libtool flag is neccessary for building DLLs on Windows.
26libalut_la_LDFLAGS = -no-undefined
27
28# Append -version-info for correct library versioning with libtool.
29libalut_la_LDFLAGS += -version-info @VERSIONINFO@
30
31# Specifying the following path is needed to find <AL/alut.h>.
32libalut_la_CPPFLAGS = -I$(top_srcdir)/include
Note: See TracBrowser for help on using the repository browser.