1 # For the NetBSD auto patching mechanism and compatibility environment
2 # setup, original NetBSD sources a put into a NetBSD subdirectory.
3 # If a file with the same name, but suffix ".patch" is in that directory,
4 # that patch will be applied before use.
6 # The NBSDMDSRCS, NBSDMISRCS, NBSDORIGHDRS and NBSDSRCS variables must be set,
7 # and bracketed by .include of Makefile.nbsd_begin and Makefile.nbsd_end
9 # Set up dependencies between the NetBSD source (in a NetBSD subdirectory)
10 # and a file with a -nbsd.x suffix (where x is 'c' or 's'). The suffix
11 # rules will then compile the file with the simulate NetBSD environment.
13 NBSDSECTIONS= 1 2 3 4 5 6 7 8 9
15 # This .for statement forces evaluation of ${CWD}
18 .for _src in ${NBSDSRCS}
20 ${_cwd}/${_src:R}-nbsd.${_src:E}: ${_cwd}/NetBSD/${_src} _AUTOPATCH
21 AUTOPATCHSRCS+= ${_cwd}/${_src:R}-nbsd.${_src:E}
27 .for _src in ${NBSDMDSRCS}
29 ${_cwd}/${_src:R}-nbsd.${_src:E}: ${_cwd}/NetBSD/${_src} _AUTOPATCH
30 AUTOPATCHSRCS+= ${_cwd}/${_src:R}-nbsd.${_src:E}
36 .for _src in ${NBSDMISRCS}
38 ${_cwd}/${_src:R}-nbsd.${_src:E}: ${_cwd}/NetBSD/${_src} _AUTOPATCH
39 AUTOPATCHSRCS+= ${_cwd}/${_src:R}-nbsd.${_src:E}
46 .for _src in ${NBSDHDRS}
47 ${_cwd}/${_src}: ${_cwd}/NetBSD/${_src} _AUTOPATCH
48 AUTOPATCHHDRS+= ${_cwd}/${_src}
52 .for _sect in ${NBSDSECTIONS}
53 .for _src in ${NBSDMAN${_sect}}
55 ${_cwd}/${_src}: ${_cwd}/NetBSD/${_src} _AUTOPATCH
56 AUTOPATCHMAN+= ${_cwd}/${_src}