mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02: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*
|
||
|
|
||
|
|