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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Solaris binary emulation.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definition is now in the main makefile...
  9. USE_STANDARD_AS_RULE := true
  10. EXTRA_AFLAGS := -ansi
  11. ifeq ($(CONFIG_SOLARIS_EMUL),m)
  12.   EXTRA_AFLAGS += $(MODFLAGS)
  13. endif
  14. list-multi := solaris.o
  15. solaris-objs := entry64.o fs.o misc.o signal.o systbl.o socket.o 
  16. ioctl.o ipc.o socksys.o timod.o
  17. obj-$(CONFIG_SOLARIS_EMUL) += solaris.o
  18. ifneq ($(CONFIG_SOLARIS_EMUL),y)
  19. do_it_all:
  20. endif
  21. solaris.o: $(solaris-objs)
  22. $(LD) -r -o $@ $(solaris-objs)
  23. include $(TOPDIR)/Rules.make