mirror of
				https://github.com/alsa-project/alsa-lib.git
				synced 2025-11-03 09:01:52 -05:00 
			
		
		
		
	- rename configure.in to configure.ac - replace INCLUDES with AM_CPPFLAGS - modernize AM_INIT_AUTOMAKE invocation Signed-off-by: Patrick Welche <prlw1@cam.ac.uk> Signed-off-by: Takashi Iwai <tiwai@suse.de>
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			244 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			244 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
bin_PROGRAMS = aserver
 | 
						|
aserver_SOURCES = aserver.c
 | 
						|
# aserver_LDADD = -lasound
 | 
						|
aserver_LDADD = ../src/libasound.la
 | 
						|
 | 
						|
all: aserver
 | 
						|
 | 
						|
AM_CPPFLAGS=-I$(top_srcdir)/include -I$(top_srcdir)/src/pcm
 | 
						|
 | 
						|
../src/libasound.la:
 | 
						|
	$(MAKE) -C ../src libasound.la
 | 
						|
 |