/arch/um/kernel/Makefile

https://bitbucket.org/evzijst/gittest · Makefile · 58 lines · 36 code · 14 blank · 8 comment · 0 complexity · 9f97fe0815cd51ba8aee3474305cd326 MD5 · raw file

  1. #
  2. # Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
  3. # Licensed under the GPL
  4. #
  5. extra-y := vmlinux.lds
  6. clean-files := vmlinux.lds.S config.tmp
  7. obj-y = checksum.o config.o exec_kern.o exitcode.o \
  8. helper.o init_task.o irq.o irq_user.o ksyms.o main.o mem.o mem_user.o \
  9. physmem.o process.o process_kern.o ptrace.o reboot.o resource.o \
  10. sigio_user.o sigio_kern.o signal_kern.o signal_user.o smp.o \
  11. syscall_kern.o sysrq.o sys_call_table.o tempfile.o time.o time_kern.o \
  12. tlb.o trap_kern.o trap_user.o uaccess_user.o um_arch.o umid.o \
  13. user_util.o
  14. obj-$(CONFIG_BLK_DEV_INITRD) += initrd_kern.o initrd_user.o
  15. obj-$(CONFIG_GPROF) += gprof_syms.o
  16. obj-$(CONFIG_GCOV) += gmon_syms.o
  17. obj-$(CONFIG_TTY_LOG) += tty_log.o
  18. obj-$(CONFIG_SYSCALL_DEBUG) += syscall_user.o
  19. obj-$(CONFIG_MODE_TT) += tt/
  20. obj-$(CONFIG_MODE_SKAS) += skas/
  21. # This needs be compiled with frame pointers regardless of how the rest of the
  22. # kernel is built.
  23. CFLAGS_frame.o := -fno-omit-frame-pointer
  24. user-objs-$(CONFIG_TTY_LOG) += tty_log.o
  25. USER_OBJS := $(user-objs-y) config.o helper.o main.o process.o tempfile.o \
  26. time.o tty_log.o umid.o user_util.o frame.o
  27. include arch/um/scripts/Makefile.rules
  28. targets += config.c
  29. # Be careful with the below Sed code - sed is pitfall-rich!
  30. # We use sed to lower build requirements, for "embedded" builders for instance.
  31. $(obj)/config.tmp: $(objtree)/.config FORCE
  32. $(call if_changed,quote1)
  33. quiet_cmd_quote1 = QUOTE $@
  34. cmd_quote1 = sed -e 's/"/\\"/g' -e 's/^/"/' -e 's/$$/\\n"/' \
  35. $< > $@
  36. $(obj)/config.c: $(src)/config.c.in $(obj)/config.tmp FORCE
  37. $(call if_changed,quote2)
  38. quiet_cmd_quote2 = QUOTE $@
  39. cmd_quote2 = sed -e '/CONFIG/{' \
  40. -e 's/"CONFIG"\;/""/' \
  41. -e 'r $(obj)/config.tmp' \
  42. -e 'a""\;' \
  43. -e '}' \
  44. $< > $@