Makefile (762f99f4f3cb41a775b5157dd761217beba65873) | Makefile (bbc90bc1bd4a63121bae9cbfafe1e1f0beaf24b1) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# linux/arch/arm/tools/Makefile 4# 5# Copyright (C) 2001 Russell King 6# 7 8gen := arch/$(ARCH)/include/generated --- 15 unchanged lines hidden (view full) --- 24 25PHONY += kapi uapi 26 27kapi: $(kapi-hdrs-y) $(gen-y) 28 29uapi: $(uapi-hdrs-y) 30 31# Create output directory if not already present | 1# SPDX-License-Identifier: GPL-2.0 2# 3# linux/arch/arm/tools/Makefile 4# 5# Copyright (C) 2001 Russell King 6# 7 8gen := arch/$(ARCH)/include/generated --- 15 unchanged lines hidden (view full) --- 24 25PHONY += kapi uapi 26 27kapi: $(kapi-hdrs-y) $(gen-y) 28 29uapi: $(uapi-hdrs-y) 30 31# Create output directory if not already present |
32_dummy := $(shell [ -d '$(kapi)' ] || mkdir -p '$(kapi)') \ 33 $(shell [ -d '$(uapi)' ] || mkdir -p '$(uapi)') | 32$(shell mkdir -p $(kapi) $(uapi)) |
34 35quiet_cmd_gen_mach = GEN $@ 36 cmd_gen_mach = $(AWK) -f $(real-prereqs) > $@ 37 38$(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE 39 $(call if_changed,gen_mach) 40 41quiet_cmd_syshdr = SYSHDR $@ --- 17 unchanged lines hidden --- | 33 34quiet_cmd_gen_mach = GEN $@ 35 cmd_gen_mach = $(AWK) -f $(real-prereqs) > $@ 36 37$(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE 38 $(call if_changed,gen_mach) 39 40quiet_cmd_syshdr = SYSHDR $@ --- 17 unchanged lines hidden --- |