isfl/x64/Makefile

17 lines
294 B
Makefile
Raw Normal View History

2019-04-12 21:27:37 +00:00
#
# Makefile for InsydeFlash tool for Linux (build your main kernel)
#
MACHINE = $(shell uname -m)
obj-m+=isfl_drv.o
all: isfl_drv
isfl_drv:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean