Inaky Perez-Gonzalez | 8ddf82c | 2015-04-10 16:44:37 -0700 | [diff] [blame] | 1 | ### |
| 2 | # scripts contains sources for various helper programs used throughout |
| 3 | # the kernel for the build process. |
| 4 | # --------------------------------------------------------------------------- |
| 5 | # docproc: Used in Documentation/DocBook |
| 6 | |
| 7 | HOST_EXTRACFLAGS += -I$(srctree)/tools/include |
| 8 | |
| 9 | always := $(hostprogs-y) $(hostprogs-m) |
| 10 | |
| 11 | # The following hostprogs-y programs are only build on demand |
| 12 | hostprogs-y += unifdef docproc |
| 13 | |
| 14 | # These targets are used internally to avoid "is up to date" messages |
| 15 | PHONY += build_unifdef build_docproc |
| 16 | build_unifdef: $(obj)/unifdef |
| 17 | @: |
| 18 | build_docproc: $(obj)/docproc |
| 19 | @: |
| 20 | |
Inaky Perez-Gonzalez | 8ddf82c | 2015-04-10 16:44:37 -0700 | [diff] [blame] | 21 | # Let clean descend into subdirs |
Juan Manuel Cruz | eee6787 | 2015-06-17 16:20:30 -0500 | [diff] [blame] | 22 | subdir- += basic kconfig gen_idt |