Commit 248ced34 authored by Cesar Prados's avatar Cesar Prados

makefile: if the kernel has already the vme module,

          kernel > 3.9, this module it is not compiled.
parent 90665d8d
ifneq ($(CONFIG_VME_BUS),m)
ifneq ($(CONFIG_VME_BUS),y)
SUBDIRS = driver include lib drvrtest test pylib test_vetar
endif
endif
all: $(SUBDIRS:=-all)
clean: $(SUBDIRS:=-clean)
......
# Only build vme if it was missing
ifneq ($(CONFIG_VME_BUS),m)
ifneq ($(CONFIG_VME_BUS),y)
obj-m := vmebus.o
vmebus-objs := tsi148.o vme_bridge.o vme_cesif.o vme_dma.o vme_irq.o vme_misc.o vme_window.o
endif
endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment