 1ad6b17c35
			
		
	
	
		1ad6b17c35
		
	
	
	
	
		
			
			Now that WireGuard has been upstreamed and the repos split, we have to look elsewhere for these headers. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			525 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			525 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| ifeq ($(KERNELRELEASE),)
 | |
| KERNELDIR ?= /lib/modules/$(shell uname -r)/build
 | |
| PWD := $(shell pwd)
 | |
| CFLAGS ?= -O3 -march=native
 | |
| CFLAGS += -Wall -pedantic -std=gnu11
 | |
| 
 | |
| offsets.include: offset-finder
 | |
| 	./$^ > $@
 | |
| 
 | |
| offset-finder: offset-finder.c offset-finder.o
 | |
| 	$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^
 | |
| 
 | |
| offset-finder.o: offset-finder.c
 | |
| 	$(MAKE) -C $(KERNELDIR) M=$(PWD) $@
 | |
| 	objcopy -j '.rodata*' $@ $@
 | |
| 
 | |
| clean:
 | |
| 	rm -f offset-finder offsets.include
 | |
| 	$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
 | |
| 
 | |
| .PHONY: clean
 | |
| else
 | |
| obj-m := offset-finder.o
 | |
| endif
 |