summaryrefslogtreecommitdiffhomepage
path: root/src/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..03b32d1
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,55 @@
+SUBDIRS = glade
+
+INCLUDES = \
+ $(PACKAGE_CFLAGS) $(GTK_CFLAGS) $(ALSA_CFLAGS) $(JACK_CFLAGS) $(GLADE_CFLAGS)\
+ -DLINGOT_GLADEDIR=\""$(datadir)/lingot/glade/"\" \
+ -DLINGOT_LOCALEDIR=\""$(datadir)/locale"\"
+
+AM_CXXFLAGS =\
+ -Wall
+
+bin_PROGRAMS = lingot
+
+lingot_SOURCES = \
+ lingot-fft.c\
+ lingot-fft.h\
+ lingot-audio.c\
+ lingot-audio.h\
+ lingot-audio-oss.c\
+ lingot-audio-oss.h\
+ lingot-audio-alsa.c\
+ lingot-audio-alsa.h\
+ lingot-audio-jack.c\
+ lingot-audio-jack.h\
+ lingot-complex.h\
+ lingot-complex.c\
+ lingot-config.c\
+ lingot-config.h\
+ lingot-config-scale.c\
+ lingot-config-scale.h\
+ lingot-core.c\
+ lingot-core.h\
+ lingot-defs.h\
+ lingot-msg.h\
+ lingot-msg.c\
+ lingot-gui-config-dialog.c\
+ lingot-gui-config-dialog.h\
+ lingot-gui-config-dialog-scale.c\
+ lingot-gui-config-dialog-scale.h\
+ lingot-gui-mainframe.c\
+ lingot-gui-mainframe.h\
+ lingot-gauge.c\
+ lingot-gauge.h\
+ lingot-filter.c\
+ lingot-filter.h\
+ lingot-signal.c\
+ lingot-signal.h\
+ lingot.c\
+ lingot-i18n.h
+
+lingot_LDFLAGS =
+
+lingot_LDADD = \
+ $(PACKAGE_LIBS) $(GTK_LIBS) $(ALSA_LIBS) $(JACK_LIBS) $(GLADE_LIBS)\
+ -lpthread
+