-
Notifications
You must be signed in to change notification settings - Fork 46
/
Makefile
33 lines (28 loc) · 1.18 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# rfm12b-linux: linux kernel driver for the rfm12(b) RF module by HopeRF
# Copyright (C) 2013 Georg Kaindl
#
# This file is part of rfm12b-linux.
#
# rfm12b-linux is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# rfm12b-linux is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with rfm12b-linux. If not, see <http://www.gnu.org/licenses/>.
#
obj-m += rfm12b.o
KVERSION := $(shell uname -r)
# 3.7 moved version.h to a different location
ifneq ("$(wildcard $(/lib/modules/$(KVERSION)/build/include/generated/uapi/linux/version.h))","")
EXTRA_CFLAGS := -I/lib/modules/$(KVERSION)/build/include/generated/uapi/
endif
all:
make -C /lib/modules/$(KVERSION)/build $(INCLUDE) M=$(PWD) modules
clean:
make -C /lib/modules/$(KVERSION)/build $(INCLUDE) M=$(PWD) clean