mirror of
				https://git.proxmox.com/git/mirror_zfs
				synced 2025-11-04 03:00:20 +00:00 
			
		
		
		
	Factor Linux specific pieces out of libspl. Reviewed-by: Ryan Moeller <ryan@ixsystems.com> Reviewed-by: Sean Eric Fagan <sef@ixsystems.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Matt Macy <mmacy@FreeBSD.org> Closes #9336
		
			
				
	
	
		
			16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(top_srcdir)/config/Rules.am
 | 
						|
 | 
						|
atomic_SOURCE = atomic.c
 | 
						|
atomic_ASM = atomic.S
 | 
						|
 | 
						|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
 | 
						|
	  $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -fPIC
 | 
						|
EXTRA_DIST = $(atomic_SOURCE)
 | 
						|
 | 
						|
# Generates assembly to simplify inclusion in ../Makefile.am
 | 
						|
all-am:
 | 
						|
	$(COMPILE) -c -S $(atomic_SOURCE) -o $(atomic_ASM)
 | 
						|
 | 
						|
clean-generic:
 | 
						|
	$(RM) $(atomic_ASM)
 |