Makefile 497 B

123456789101112131415161718
  1. #
  2. # Makefile for the linux s390-specific parts of the memory manager.
  3. #
  4. COMPILE_VERSION := __linux_compile_version_id__`hostname | \
  5. tr -c '[0-9A-Za-z]' '_'`__`date | \
  6. tr -c '[0-9A-Za-z]' '_'`_t
  7. EXTRA_CFLAGS := -DCOMPILE_VERSION=$(COMPILE_VERSION) -gstabs -I.
  8. targets := image
  9. $(obj)/image: vmlinux FORCE
  10. $(call if_changed,objcopy)
  11. install: $(CONFIGURE) $(obj)/image
  12. sh -x $(srctree)/$(obj)/install.sh $(KERNELRELEASE) $(obj)/image \
  13. System.map Kerntypes "$(INSTALL_PATH)"