mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-11-02 09:01:48 -05:00
17 lines
370 B
Makefile
17 lines
370 B
Makefile
# # Process this file with automake to produce Makefile.in.
|
|
AUTOMAKE_OPTIONS = 1.3 foreign
|
|
|
|
CFLAGS = -Wall -g
|
|
|
|
bin_PROGRAMS = cspctl
|
|
man_MANS = cspctl.1
|
|
|
|
cspctl_SOURCES = cspctl.c
|
|
|
|
EXTRA_DIST = README COPYING cspctl.1 depcomp
|
|
|
|
alsa-dist: distdir
|
|
@rm -rf ../distdir/sb16_csp
|
|
@mkdir -p ../distdir/sb16_csp
|
|
@cp -RLpv $(distdir)/* ../distdir/sb16_csp
|
|
@rm -rf $(distdir)
|