Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the HP specific kernel interface routines
  3. # under Linux.
  4. #
  5. # Note! Dependencies are done automagically by 'make dep', which also
  6. # removes any old dependencies. DON'T put your own dependencies here
  7. # unless it's something special (ie not a .c file).
  8. #
  9. USE_STANDARD_AS_RULE := true
  10. all: hp-lj.o
  11. O_TARGET := hp-lj.o
  12. export-objs := utils.o
  13. obj-y   := init.o setup.o irq.o int-handler.o pci.o utils.o asic.o
  14. obj-$(CONFIG_REMOTE_DEBUG) += gdb_hook.o
  15. obj-$(CONFIG_DIRECT_PRINTK) += gdb_hook.o
  16. obj-$(CONFIG_BLK_DEV_INITRD) += initrd.o
  17. clean:
  18. rm *.o
  19. forceit:
  20. # package filesystem from rootfs directory into binary package
  21. romfs.bin: forceit ./rootfs
  22. @genromfs -d ./rootfs -f $@
  23. # transform rootfs.bin into object file format for linking
  24. initrd.o: romfs.bin
  25. @echo "" | $(CROSS_COMPILE)as -o $@
  26. @$(CROSS_COMPILE)objcopy --add-section .initrd=$< $@
  27. include $(TOPDIR)/Rules.make
  28. .PHONY: forceit