xref: /freebsd/sys/modules/dtrace/Makefile.inc (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1b8915e90SJohn BirrellIGNORE_PRAGMA=	1
2b8915e90SJohn Birrell
3b8915e90SJohn Birrellload	:
4b8915e90SJohn Birrell	-kldload dtrace
5*c09808d0SWarner Losh.if ${MACHINE_CPUARCH} == "i386"
6b8915e90SJohn Birrell	-kldload sdt
7b8915e90SJohn Birrell	-kldload fbt
8b8915e90SJohn Birrell	-kldload prototype
9b8915e90SJohn Birrell.endif
10b8915e90SJohn Birrell	-kldload profile
11b8915e90SJohn Birrell	-kldload systrace
12b8915e90SJohn Birrell	kldstat
13b8915e90SJohn Birrell
14b8915e90SJohn Birrellunload	:
15b8915e90SJohn Birrell	-kldunload systrace
16b8915e90SJohn Birrell	-kldunload profile
17*c09808d0SWarner Losh.if ${MACHINE_CPUARCH} == "i386"
18b8915e90SJohn Birrell	-kldunload prototype
19b8915e90SJohn Birrell	-kldunload fbt
20b8915e90SJohn Birrell	-kldunload sdt
21b8915e90SJohn Birrell.endif
22b8915e90SJohn Birrell	-kldunload dtrace
23b8915e90SJohn Birrell	kldstat
24