I'm trying to install a high speed serial port enabler for my motherboard that I downloaded as a tar.gz file. After untaring it, I get a Makefile 2.6 that reads as follows:
ifneq ($(KERNELRELEASE),)
obj-m := viahss.o
else
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
endif
Anyone know how I use this? Is it a script? Doesn't look like something I'd compile. Thanks.
ifneq ($(KERNELRELEASE),)
obj-m := viahss.o
else
KDIR := /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) modules
endif
Anyone know how I use this? Is it a script? Doesn't look like something I'd compile. Thanks.