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

Linux/Unix编程

开发平台:

Unix_Linux

  1. # arch/ia64/sn/Makefile
  2. #
  3. # Copyright (C) 1999,2001-2002 Silicon Graphics, Inc.  All Rights Reserved.
  4. #
  5. # This program is free software; you can redistribute it and/or modify it 
  6. # under the terms of version 2 of the GNU General Public License 
  7. # as published by the Free Software Foundation.
  8. # This program is distributed in the hope that it would be useful, but 
  9. # WITHOUT ANY WARRANTY; without even the implied warranty of 
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
  11. # Further, this software is distributed without any warranty that it is 
  12. # free of the rightful claim of any third person regarding infringement 
  13. # or the like.  Any license provided herein, whether implied or 
  14. # otherwise, applies only to this software file.  Patent licenses, if 
  15. # any, provided herein do not apply to combinations of this program with 
  16. # other software, or any other product whatsoever.
  17. # You should have received a copy of the GNU General Public 
  18. # License along with this program; if not, write the Free Software 
  19. # Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
  20. # Contact information:  Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, 
  21. # Mountain View, CA  94043, or:
  22. # http://www.sgi.com 
  23. # For further information regarding this notice, see: 
  24. # http://oss.sgi.com/projects/GenInfo/NoticeExplan
  25. #
  26. EXTRA_CFLAGS    := -DLITTLE_ENDIAN
  27. .S.s:
  28. $(CPP) $(AFLAGS) $(AFLAGS_KERNEL) -o $*.s $<
  29. .S.o:
  30. $(CC) $(AFLAGS) $(AFLAGS_KERNEL) -c -o $*.o $<
  31. O_TARGET        = sn.o
  32. ifeq ($(CONFIG_MODULES),y)
  33. export-objs = sn_ksyms.o
  34. endif
  35. subdir-$(CONFIG_IA64_SGI_SN1) = sn1
  36. subdir-$(CONFIG_IA64_SGI_SN2) = sn2
  37. obj-y = probe.o setup.o sn_asm.o sv.o bte.o iomv.o
  38. obj-$(CONFIG_IA64_SGI_SN1)      += irq.o mca.o
  39. obj-$(CONFIG_IA64_SGI_SN2)      += irq.o mca.o
  40. obj-$(CONFIG_IA64_SGI_SN1)      += sn1/sn1.a  
  41. obj-$(CONFIG_IA64_SGI_SN2)      += sn2/sn2.a  
  42. obj-$(CONFIG_IA64_SGI_AUTOTEST) += llsc4.o misctest.o
  43. obj-$(CONFIG_IA64_GENERIC)      += machvec.o
  44. obj-$(CONFIG_MODULES)           += sn_ksyms.o
  45. include $(TOPDIR)/Rules.make