DF-0003 / Makefile
# Makefile for DF-0003 trigger kld module. # Build with: make SYSDIR=/usr/src/sys # Produces poc_negunit.ko via the standard bsd.kmod.mk toolchain (correct # CFLAGS, forwarder headers, relocation-friendly link). KMOD= poc_negunit SRCS= poc_negunit.c NOPROFILE= yes NOGCC46= yes .include <bsd.kmod.mk> |