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>
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			771 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
ACLOCAL_AMFLAGS = -I m4
 | 
						|
 | 
						|
SUBDIRS=doc include src
 | 
						|
if BUILD_MODULES
 | 
						|
SUBDIRS += modules
 | 
						|
endif
 | 
						|
if BUILD_PCM_PLUGIN_SHM
 | 
						|
SUBDIRS += aserver
 | 
						|
endif
 | 
						|
if BUILD_MIXER
 | 
						|
if BUILD_ALISP
 | 
						|
SUBDIRS += alsalisp
 | 
						|
endif
 | 
						|
endif
 | 
						|
SUBDIRS += test utils
 | 
						|
EXTRA_DIST=ChangeLog INSTALL TODO NOTES configure gitcompile libtool \
 | 
						|
	   depcomp version MEMORY-LEAK m4/attributes.m4
 | 
						|
AUTOMAKE_OPTIONS=foreign
 | 
						|
 | 
						|
AM_CPPFLAGS=-I$(top_srcdir)/include
 | 
						|
 | 
						|
rpm: dist
 | 
						|
	$(MAKE) -C utils rpm
 | 
						|
 | 
						|
dist-hook:
 | 
						|
	-chmod -R a+r $(distdir)
 | 
						|
	@if ! test -z "$(AMTAR)"; then \
 | 
						|
		$(AMTAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
 | 
						|
	else \
 | 
						|
		$(TAR) --create --verbose --file=- $(distdir) | bzip2 -c -9 > $(distdir).tar.bz2 ; \
 | 
						|
	fi
 | 
						|
 | 
						|
doc-dummy:
 | 
						|
 | 
						|
doc: doc-dummy
 | 
						|
	$(MAKE) -C include all
 | 
						|
	$(MAKE) -C doc doc
 |