Files
Jungfraujoch/fpga/pcie_driver/Makefile
2023-10-16 15:13:47 +02:00

15 lines
387 B
Makefile

obj-m += jfjoch.o
cflags-m=-std=c99
jfjoch-y := jfjoch_drv.o jfjoch_ioctl.o jfjoch_memory.o jfjoch_pcie_setup.o jfjoch_function.o jfjoch_miscdev.o
all:
make -C /lib/modules/$(shell uname -r)/build M=$(CURDIR) modules
install:
make -C /lib/modules/$(shell uname -r)/build M=$(CURDIR) modules_install
depmod -A
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(CURDIR) clean