~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmidi/TIMIDITY/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#       $Id: Makefile.am,v 1.14 2001/04/14 04:41:11 waba Exp $
 
3
#
 
4
#                           KMidi Makefile
 
5
#
 
6
#  Copyright 1997 Bernd Johannes Wuebben, wuebben@math.cornell.edu
 
7
#
 
8
 
 
9
VERSION = 0.2i
 
10
 
 
11
INCLUDES = $(X_INCLUDES) `$(ARTSCCONFIG) --cflags`
 
12
AM_CFLAGS = -DDEFAULT_PATH=\"$(TIMID_DIR)\" $(EXTRATDEFS) $(EXTRATCFLAGS)
 
13
if GXXOPTIMIZE
 
14
CFLAGS = -O3 -fomit-frame-pointer -ffast-math
 
15
endif
 
16
LDFLAGS = `$(ARTSCCONFIG) --libs`
 
17
LDADD = $(LIBALIB) $(LIBAUDIO) $(LIBMME) $(EXTRATLIBS) $(X_LIBS) -lm
 
18
 
 
19
# Where to install the patches, config files, and MIDI files.
 
20
# If you change this, it's a good idea to recompile the binary,
 
21
# or you'll need to invoke timidity with the -L option.
 
22
TIMID_DIR = /$(kde_datadir)/kmidi/config
 
23
 
 
24
appsdir = $(kde_appsdir)/Multimedia
 
25
apps_DATA = timidity.desktop
 
26
 
 
27
bin_PROGRAMS = timidity
 
28
 
 
29
timidity_SOURCES = timidity.c common.c readmidi.c playmidi.c resample.c mix.c instrum.c \
 
30
        tables.c controls.c output.c filter.c \
 
31
        wave_a.c raw_a.c dumb_c.c fffload.c \
 
32
        sndfont.c readsbk.c \
 
33
        effects.c reverb_e.c chorus_e.c phaser_e.c celeste_e.c \
 
34
        resample_l.c resample_f.c cfg.c \
 
35
        b_out.c hpux_a.c linux_a.c linux_a2.c sun_a.c dec_a.c \
 
36
        hpux_d_a.c alsa_a.c arts_a.c \
 
37
        bsd20_a.c esd_a.c nas_a.c \
 
38
        ncurs_c.c slang_c.c tk_c.c gtk_i.c ctl.c \
 
39
        motif_c.c motif_i.c motif_p.c xaw_i.c xaw_c.c
 
40
 
 
41
noinst_HEADERS = config.h common.h readmidi.h playmidi.h resample.h mix.h instrum.h \
 
42
        tables.h controls.h output.h filter.h motif.h xaw.h ctl.h
 
43
 
 
44
#cfg.c:
 
45
#       rm -f cfg.c
 
46
#       flex -t -B $(srcdir)/cfg.l >cfg.c
 
47
 
 
48
timidity.c:
 
49
        $(srcdir)/makelinks $(srcdir)/..
 
50
 
 
51
$(HEADERS): ;
 
52