File: Makefile.am

package info (click to toggle)
gimp-gap 2.6.0%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,716 kB
  • sloc: ansic: 119,817; sh: 3,890; makefile: 931; lisp: 97; pascal: 55
file content (43 lines) | stat: -rw-r--r-- 881 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
## Process this file with automake to produce Makefile.in

# FIXME: there is no support for PLATFORM_WIN32 in this release
# the general idea is, to add clientcode variants in the future
#  (for WIN32 and maybe others)
# 
# All that stuff should use the same simple wavplay API on clientside
# but should talk to different audioserver programs.
# (using other server api than wavplayer's API)  
#

libexecdir = $(GAPLIBDIR)
libexec_SCRIPTS = audioconvert_to_wav.sh

noinst_LIBRARIES = libwavplayclient.a

AM_CPPFLAGS = \
	-DLOCALEDIR=\""$(LOCALEDIR)"\"

INCLUDES = \
	-I$(top_srcdir)	\
	$(GLIB_CFLAGS)	\
	$(GIMP_CFLAGS)	\
	-I$(includedir)


libwavplayclient_a_SOURCES = \
	wpc_client.c	\
	wpc_lib.h	\
	wpc_msg.c	\
	wpc_procterm.c	\
	wpc_wavfile.c

EXTRA_DIST = \
	README		\
	client.h	\
	client.c	\
	msg.c		\
	procterm.c	\
	wavfile.c	\
	wavfile.h	\
	wavplay.h	\
	$(libexec_SCRIPTS)