2022-06-30 11:13:56 -05:00
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
|
|
obj-m:= wistron_6512_32r_cpld.o wistron_6512_32r_fan.o \
|
|
|
|
wistron_6512_32r_oom.o wistron_6512_32r_psu.o \
|
2023-02-23 11:08:13 -06:00
|
|
|
wistron_6512_32r_thermal.o i2c-imc.o \
|
2022-06-30 11:13:56 -05:00
|
|
|
wistron_6512_32r_leds.o wistron_6512_32r_syseeprom.o
|
|
|
|
else
|
|
|
|
ifeq (,$(KERNEL_SRC))
|
|
|
|
#$(error KERNEL_SRC is not defined)
|
|
|
|
KVERSION=3.16.0-8-amd64
|
|
|
|
KERNEL_DIR = /usr/src/linux-headers-$(KVERSION)/
|
|
|
|
KERNELDIR:=$(KERNEL_DIR)
|
|
|
|
else
|
|
|
|
KERNELDIR:=$(KERNEL_SRC)
|
|
|
|
endif
|
|
|
|
PWD:=$(shell pwd)
|
|
|
|
default:
|
|
|
|
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
|
|
|
|
clean:
|
|
|
|
rm -rf *.o *.mod.o *.mod.o *.ko .*cmd *.mod.c *.mod .tmp_versions Module.markers Module.symvers modules.order
|
|
|
|
endif
|