mirror of
				https://github.com/DigitalDevices/dddvb.git
				synced 2025-03-01 10:35:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			360 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| KDIR	?= /lib/modules/$(shell uname -r)/build
 | |
| PWD	:= $(shell pwd)
 | |
| 
 | |
| MODDEFS := CONFIG_DVB_DDIP=m 
 | |
| 
 | |
| all: 
 | |
| 	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) $(MODDEFS) modules
 | |
| 
 | |
| dep:
 | |
| 	DIR=`pwd`; (cd $(TOPDIR); make SUBDIRS=$$DIR dep)
 | |
| 
 | |
| install: all
 | |
| 	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules_install
 | |
| 
 | |
| clean:
 | |
| 	rm -rf */*.o */*.ko */*.mod.c */.*.cmd .tmp_versions Module* modules*
 | |
| 
 | |
| 
 |