diff options
Diffstat (limited to 'arch/um/Makefile')
-rw-r--r-- | arch/um/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/um/Makefile b/arch/um/Makefile index 46a332f96e3c..df492d8afe95 100644 --- a/arch/um/Makefile +++ b/arch/um/Makefile | |||
@@ -174,6 +174,19 @@ $(ARCH_DIR)/user-offsets.h: $(ARCH_DIR)/user-offsets.s | |||
174 | 174 | ||
175 | CLEAN_FILES += $(ARCH_DIR)/user-offsets.s $(ARCH_DIR)/user-offsets.h | 175 | CLEAN_FILES += $(ARCH_DIR)/user-offsets.s $(ARCH_DIR)/user-offsets.h |
176 | 176 | ||
177 | $(ARCH_DIR)/kernel-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/kernel-offsets.c \ | ||
178 | $(ARCH_SYMLINKS) \ | ||
179 | $(SYS_DIR)/sc.h \ | ||
180 | include/asm include/linux/version.h \ | ||
181 | include/config/MARKER \ | ||
182 | $(ARCH_DIR)/include/user_constants.h | ||
183 | $(CC) $(CFLAGS) $(NOSTDINC_FLAGS) $(CPPFLAGS) -S -o $@ $< | ||
184 | |||
185 | $(ARCH_DIR)/kernel-offsets.h: $(ARCH_DIR)/kernel-offsets.s | ||
186 | $(call filechk,gen-asm-offsets) | ||
187 | |||
188 | CLEAN_FILES += $(ARCH_DIR)/kernel-offsets.s $(ARCH_DIR)/kernel-offsets.h | ||
189 | |||
177 | $(ARCH_DIR)/include/task.h: $(ARCH_DIR)/util/mk_task | 190 | $(ARCH_DIR)/include/task.h: $(ARCH_DIR)/util/mk_task |
178 | $(call filechk,gen_header) | 191 | $(call filechk,gen_header) |
179 | 192 | ||