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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # ia64/boot/Makefile
  3. #
  4. # This file is subject to the terms and conditions of the GNU General Public
  5. # License.  See the file "COPYING" in the main directory of this archive
  6. # for more details.
  7. #
  8. # Copyright (C) 1998 by David Mosberger-Tang <davidm@hpl.hp.com>
  9. #
  10. LINKFLAGS = -static -T bootloader.lds
  11. .S.s:
  12. $(CPP) $(AFLAGS) -traditional -o $*.o $<
  13. .S.o:
  14. $(CC) $(AFLAGS) -traditional -c -o $*.o $<
  15. OBJECTS = bootloader.o
  16. targets-$(CONFIG_IA64_HP_SIM) += bootloader
  17. targets-$(CONFIG_IA64_GENERIC) += bootloader
  18. all: $(targets-y)
  19. bootloader: $(OBJECTS)
  20. $(LD) $(LINKFLAGS) $(OBJECTS) $(TOPDIR)/lib/lib.a $(TOPDIR)/arch/$(ARCH)/lib/lib.a 
  21. -o bootloader
  22. clean:
  23. rm -f $(targets-y) $(OBJECTS)
  24. dep: