summaryrefslogtreecommitdiffhomepage
path: root/src/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..97a8b32
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,40 @@
+INCLUDES = \
+ $(PACKAGE_CFLAGS) $(GTK_CFLAGS) $(ALSA_CFLAGS)\
+ -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-complex.h\
+ lingot-complex.c\
+ lingot-config.c\
+ lingot-config.h\
+ lingot-core.c\
+ lingot-core.h\
+ lingot-defs.h\
+ lingot-config-dialog.c\
+ lingot-config-dialog.h\
+ lingot-gauge.c\
+ lingot-gauge.h\
+ lingot-mainframe.c\
+ lingot-mainframe.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)\
+ -lpthread
+