mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 07:39:42 +02:00
31 lines
553 B
Makefile
31 lines
553 B
Makefile
lib_LTLIBRARIES = libportmixer.la
|
|
|
|
libportmixer_la_CPPFLAGS = -I$(top_srcdir)/include $(PORTAUDIO_CFLAGS)
|
|
libportmixer_la_SOURCES = \
|
|
px_mixer.c \
|
|
px_mixer.h \
|
|
$(NULL)
|
|
|
|
if USE_UNIX_OSS
|
|
libportmixer_la_SOURCES += px_unix_oss.c
|
|
endif
|
|
|
|
if USE_LINUX_ALSA
|
|
libportmixer_la_SOURCES += px_linux_alsa.c
|
|
endif
|
|
|
|
if USE_MAC_COREAUDIO
|
|
libportmixer_la_SOURCES += px_mac_coreaudio.c
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
px_example_api.c \
|
|
px_win_common.c \
|
|
px_win_common.h \
|
|
px_win_ds.c \
|
|
px_win_endpoint.c \
|
|
px_win_endpoint.h \
|
|
px_win_wasapi.c \
|
|
px_win_wmme.c \
|
|
$(NULL)
|