alsa-lib/aserver/Makefile.am

19 lines
307 B
Text
Raw Normal View History

2003-02-12 21:57:49 +00:00
if HAVE_JACK
JACK_LIB = -ljack
else
JACK_LIB =
endif
2000-08-31 11:21:05 +00:00
bin_PROGRAMS = aserver
aserver_SOURCES = aserver.c
2000-08-31 15:56:59 +00:00
# aserver_LDADD = -lasound
2003-02-12 21:57:49 +00:00
aserver_LDADD = ../src/libasound.la $(JACK_LIB)
2000-08-31 11:21:05 +00:00
all: aserver
INCLUDES=-I$(top_srcdir)/include -I$(top_srcdir)/src/pcm
2000-09-14 09:05:16 +00:00
../src/libasound.la:
$(MAKE) -C ../src libasound.la
2000-09-14 09:05:16 +00:00