Files
Jungfraujoch/fpga/pcie_driver/Makefile
T
leonarski_f d315506633 * Enhancements for XFEL
* Enhancements for EIGER
* Writer is more flexible and capable of handling DECTRIS data
2024-03-05 20:41:47 +01:00

14 lines
417 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 jfjoch_sysfs.o jfjoch_int.o jfjoch_i2c.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
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(CURDIR) clean