Makefile.unx
上传用户:yuppie_zhu
上传日期:2007-01-08
资源大小:535k
文件大小:3k
源码类别:

编译器/解释器

开发平台:

C/C++

  1. # Unix fall-back makefile for the Netwide Assembler. For use if
  2. # `configure' fails to generate a workable Makefile.
  3. #
  4. # If `configure' doesn't work for you, *please* inform <hpa@zytor.com>
  5. #
  6. # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  7. # Julian Hall. All rights reserved. The software is
  8. # redistributable under the licence given in the file "Licence"
  9. # distributed in the NASM archive.
  10. # You may need to adjust these values.
  11. prefix = /usr/local
  12. CC = cc
  13. CFLAGS = -O -I.
  14. # You _shouldn't_ need to adjust anything below this line.
  15. exec_prefix = ${prefix}
  16. bindir = ${exec_prefix}/bin
  17. mandir = ${prefix}/man
  18. INSTALL = install -c
  19. INSTALL_PROGRAM = ${INSTALL}
  20. INSTALL_DATA = ${INSTALL} -m 644
  21. .c.o:
  22. $(CC) -c $(CFLAGS) $*.c
  23. NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o 
  24.        parser.o outform.o outbin.o outaout.o outcoff.o outelf.o 
  25.        outobj.o outas86.o outrdf.o outdbg.o preproc.o listing.o 
  26.        eval.o outrdf2.o zoutieee.o
  27. NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
  28. all: nasm ndisasm
  29. nasm: $(NASM)
  30. $(CC) -o nasm $(NASM)
  31. ndisasm: $(NDISASM)
  32. $(CC) -o ndisasm $(NDISASM)
  33. assemble.o: assemble.c nasm.h insnsi.h nasmlib.h assemble.h insnsn.c
  34. disasm.o: disasm.c nasm.h insnsi.h disasm.h sync.h insns.h names.c insnsn.c
  35. eval.o: eval.c eval.h nasm.h insnsi.h nasmlib.h
  36. float.o: float.c nasm.h insnsi.h
  37. insnsa.o: insnsa.c nasm.h insnsi.h insns.h
  38. insnsd.o: insnsd.c nasm.h insnsi.h insns.h
  39. labels.o: labels.c nasm.h insnsi.h nasmlib.h
  40. listing.o: listing.c nasm.h insnsi.h nasmlib.h listing.h
  41. nasm.o: nasm.c nasm.h insnsi.h nasmlib.h preproc.h parser.h assemble.h labels.h 
  42.  outform.h listing.h
  43. nasmlib.o: nasmlib.c nasm.h insnsi.h nasmlib.h names.c insnsn.c
  44. ndisasm.o: ndisasm.c nasm.h insnsi.h nasmlib.h sync.h disasm.h
  45. outaout.o: outaout.c nasm.h insnsi.h nasmlib.h outform.h
  46. outas86.o: outas86.c nasm.h insnsi.h nasmlib.h outform.h
  47. outbin.o: outbin.c nasm.h insnsi.h nasmlib.h outform.h
  48. outcoff.o: outcoff.c nasm.h insnsi.h nasmlib.h outform.h
  49. outdbg.o: outdbg.c nasm.h insnsi.h nasmlib.h outform.h
  50. outelf.o: outelf.c nasm.h insnsi.h nasmlib.h outform.h
  51. outform.o: outform.c outform.h nasm.h insnsi.h
  52. outobj.o: outobj.c nasm.h insnsi.h nasmlib.h outform.h
  53. outrdf.o: outrdf.c nasm.h insnsi.h nasmlib.h outform.h
  54. outrdf2.o: outrdf2.c nasm.h insnsi.h nasmlib.h outform.h
  55. zoutieee.o: zoutieee.c nasm.h insnsi.h nasmlib.h outform.h
  56. parser.o: parser.c nasm.h insnsi.h nasmlib.h parser.h float.h names.c insnsn.c
  57. preproc.o: preproc.c nasm.h insnsi.h nasmlib.h macros.c
  58. sync.o: sync.c sync.h
  59. # These source files are automagically generated from a single
  60. # instruction-table file by a Perl script. They're distributed,
  61. # though, so it isn't necessary to have Perl just to recompile NASM
  62. # from the distribution.
  63. insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
  64. perl insns.pl insns.dat
  65. # This source file is generated from the standard macros file
  66. # `standard.mac' by another Perl script. Again, it's part of the
  67. # standard distribution.
  68. macros.c: standard.mac macros.pl
  69. perl macros.pl standard.mac
  70. install: nasm ndisasm
  71. $(INSTALL_PROGRAM) nasm $(bindir)/nasm
  72. $(INSTALL_PROGRAM) ndisasm $(bindir)/ndisasm
  73. $(INSTALL_DATA) nasm.1 $(mandir)/man1/nasm.1
  74. $(INSTALL_DATA) ndisasm.1 $(mandir)/man1/ndisasm.1
  75. clean:
  76. rm -f *.o nasm ndisasm
  77. $(MAKE) -C rdoff clean
  78. rdf:
  79. $(MAKE) -C rdoff
  80. rdf_install install_rdf:
  81. $(MAKE) -C rdoff install