blob: 532e17faf8c1e9a10553b4588c6b809235db5911 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
This directory flattens some of what would be found under
$SRC/cmd/mdb in illumos-gate, where the Makefile.* here
are from a couple different levels in illumos gate:
cmd/mdb, cmd/mdb/intel, cmd/mdb/sparc
The subdirectories under here are somewhat like:
cmd/mdb/intel/modules/*
cmd/mdb/intel/{ia32,amd64}
cmd/mdb/sparc/{v7,v9}
Didn't want to replicate that whole hierarchy just to
build some mdb modules.
To add a typical intel mdb/kmdb module, you would create:
mymod/Makefile
mymod/mymod.c
mymod/amd64/Makefile
mymod/ia32/Makefile
|