1AM_CFLAGS = -D_GNU_SOURCE @CURSES_CFLAGS@ -DCURSESINC="@CURSESINC@" 2LDADD = @CURSESLIB@ 3 4bin_PROGRAMS = alsamixer 5alsamixer_SOURCES = card_select.c card_select.h \ 6 bindings.c bindings.h \ 7 cli.c \ 8 colors.c colors.h \ 9 curskey.c curskey.h \ 10 configparser.c configparser.h \ 11 device_name.c device_name.h \ 12 die.c die.h \ 13 mainloop.c mainloop.h \ 14 mem.c mem.h \ 15 menu_widget.c menu_widget.h \ 16 mixer_clickable.c mixer_clickable.h \ 17 mixer_controls.c mixer_controls.h \ 18 mixer_display.c mixer_display.h \ 19 mixer_widget.c mixer_widget.h \ 20 proc_files.c proc_files.h \ 21 textbox.c textbox.h \ 22 utils.c utils.h \ 23 volume_mapping.c volume_mapping.h \ 24 widget.c widget.h 25man_MANS = alsamixer.1 26EXTRA_DIST = alsamixer.1 27alsamixer_CPPFLAGS = -I$(top_srcdir)/include 28 29#LDFLAGS = -static 30#CFLAGS += -g -Wall 31