mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 04:45:42 +01:00
8e3e09dd0b
The recent ncurses package provides ncurses*-config program to give the proper cflags and libs. Let's use them if available. Right now, the ncurses version (5) is hard-coded. It should be better to be variable as well, but it'd be messy. Hope the ncurses version won't change rapidly.
10 lines
233 B
Makefile
10 lines
233 B
Makefile
AM_CFLAGS = @CURSES_CFLAGS@ -DCURSESINC="@CURSESINC@"
|
|
LDADD = @CURSESLIB@
|
|
|
|
bin_PROGRAMS = alsamixer
|
|
man_MANS = alsamixer.1
|
|
EXTRA_DIST = alsamixer.1
|
|
alsamixer_INCLUDES = -I$(top_srcdir)/include
|
|
|
|
#LDFLAGS = -static
|
|
#CFLAGS += -g -Wall
|