mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-31 22:25:35 -04:00
17 lines
354 B
Makefile
17 lines
354 B
Makefile
|
|
|
|
sysincludedir = ${includedir}/sys
|
|
sysinclude_HEADERS = asoundlib.h
|
|
|
|
# This is the order they will be concatenated into asoundlib.h!
|
|
#
|
|
header_files=header.h version.h error.h control.h mixer.h pcm.h rawmidi.h \
|
|
footer.h
|
|
|
|
noinst_HEADERS=$(header_files)
|
|
|
|
$(srcdir)/asoundlib.h: $(header_files)
|
|
cat $^ > $@
|
|
|
|
INCLUDES=-I$(top_srcdir)/include
|
|
|