root/sweep/trunk/src/Makefile.am

Revision 705, 1.9 kB (checked in by erikd, 2 years ago)

Add --disable-gtk-deprecated configure option to disallow use of deprecated GTK features.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 ## Process this file with automake to produce Makefile.in
2
3 SUBDIRS = tdb
4
5 AM_CFLAGS = \
6         $(GTK_DISABLE_DEPRECATED) \
7         -DPACKAGE_DATA_DIR='@PACKAGE_DATA_DIR@' \
8         @SNDFILE_CFLAGS@ \
9         @OGG_CFLAGS@ @VORBIS_CFLAGS@ \
10         @SAMPLERATE_CFLAGS@ \
11         @GTK_CFLAGS@ \
12         @GLIB_CFLAGS@ \
13         @GTHREADS_CFLAGS@ \
14         @ALSA_CFLAGS@ \
15         @PULSEAUDIO_CFLAGS@
16
17 INCLUDES = \
18         -I$(top_srcdir)/intl \
19         -I$(top_srcdir)/include \
20         -I$(top_srcdir)/src/tdb
21
22 TDB_LIBS = $(top_builddir)/src/tdb/libtdb.a
23
24 bin_PROGRAMS = sweep
25
26 sweep_SOURCES = \
27         sweep_app.h sweep_compat.h\
28         main.c \
29         about_dialog.c about_dialog.h \
30         callbacks.c callbacks.h \
31         channelops.c channelops.h \
32         cursors.c cursors.h \
33         db_ruler.c db_ruler.h \
34         db_slider.c db_slider.h \
35         driver.c driver.h \
36         driver_alsa.c \
37         driver_oss.c \
38         driver_pulseaudio.c \
39         driver_solaris.c \
40         edit.c edit.h \
41         file_dialogs.c file_dialogs.h \
42         file_sndfile.h \
43         file_sndfile1.c \
44         file_mad.c \
45         file_speex.c \
46         file_vorbis.c \
47         format.c format.h \
48         head.c head.h \
49         interface.c interface.h \
50         levelmeter.c levelmeter.h \
51         notes.c notes.h \
52         param.c param.h \
53         paste_dialogs.c paste_dialogs.h \
54         pcmio.h \
55         pixmaps.h \
56         play.c play.h \
57         plugin.c plugin.h \
58         preferences.c preferences.h \
59         print.c print.h \
60         question_dialogs.c question_dialogs.h \
61         record.c record.h \
62         sample-display.c sample-display.h \
63         samplerate.c \
64         sw_chooser.c sw_chooser.h \
65         sweep_filter.c \
66         sweep_sample.c sample.h \
67         sweep_sounddata.c \
68         sweep_selection.c \
69         sweep_typeconvert.c \
70         sweep_undo.c \
71         time_ruler.c time_ruler.h \
72         timeouts.c \
73         undo_dialog.c undo_dialog.h \
74         view.c view.h \
75         view_pixmaps.h
76
77 sweep_LDADD = $(TDB_LIBS) \
78         @GTK_LIBS@ $(INTLLIBS) $(PTHREAD_LIBS) \
79         $(SNDFILE_LIBS) \
80         $(OGG_LIBS) $(VORBIS_LIBS) $(VORBISFILE_LIBS) $(VORBISENC_LIBS) \
81         $(MAD_LIBS) $(SPEEX_LIBS) \
82         $(SAMPLERATE_LIBS) \
83         @GLIB_LIBS@ @GTHREADS_LIBS@ \
84         @ALSA_LIBS@ \
85         @PULSEAUDIO_LIBS@
86
87 sweep_LDFLAGS = @EXPORT_DYNAMIC_FLAGS@
Note: See TracBrowser for help on using the browser.