Makefile (380a989b3223d455375b4fae70fd0b9bdd43bafb) | Makefile (6990ffd8a95caaba6858ad44ff1b3157d1efba8f) |
---|---|
1# Makefile for building the sample syscall module | 1# Makefile for building the sample syscall module |
2# $FreeBSD$ |
|
2 | 3 |
3SRCS = syscall.c 4KMOD = syscall 5KO = ${KMOD}.ko 6KLDMOD = t | 4KMOD= syscall 5SRCS= syscall.c |
7 | 6 |
8KLDLOAD = /sbin/kldload 9KLDUNLOAD = /sbin/kldunload 10 11load: ${KO} 12 ${KLDLOAD} -v ./${KO} 13 14unload: ${KO} 15 ${KLDUNLOAD} -v -n ${KO} 16 | |
17.include <bsd.kmod.mk> | 7.include <bsd.kmod.mk> |