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

编译器/解释器

开发平台:

C/C++

  1. # host: dos
  2. # target: dos 32bit
  3. # Makefile for the Netwide Assembler
  4. #
  5. # The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  6. # Julian Hall. All rights reserved. The software is
  7. # redistributable under the licence given in the file "Licence"
  8. # distributed in the NASM archive.
  9. # makefile designed for djgpp 2.xx
  10. # djgpp is GNU C compiler ported by mighty DJ Delorie
  11. # www.delorie.com and any simtel mirror
  12. # You may need to adjust these values.
  13. CC = gcc
  14. CFLAGS = -O2 -I.
  15. # You _shouldn't_ need to adjust anything below this line.
  16. .c.o:
  17. $(CC) -c $(CFLAGS) $*.c
  18. NASM = nasm.o nasmlib.o float.o insnsa.o assemble.o labels.o 
  19.        parser.o outform.o outbin.o outaout.o outcoff.o outelf.o 
  20.        outobj.o outas86.o outrdf.o outdbg.o preproc.o listing.o 
  21.        eval.o outrdf2.o zoutieee.o
  22. NDISASM = ndisasm.o disasm.o sync.o nasmlib.o insnsd.o
  23. all: nasm.exe ndisasm.exe
  24. nasm.exe: $(NASM)
  25. $(CC) -o $@ $(NASM)
  26. ndisasm.exe: $(NDISASM)
  27. $(CC) -o $@ $(NDISASM)
  28. assemble.o: assemble.c nasm.h insnsi.h nasmlib.h assemble.h insns.h
  29. disasm.o: disasm.c nasm.h insnsi.h disasm.h sync.h insns.h names.c insnsn.c
  30. eval.o: eval.c eval.h nasm.h insnsi.h nasmlib.h
  31. float.o: float.c nasm.h insnsi.h
  32. insnsa.o: insnsa.c nasm.h insnsi.h insns.h
  33. insnsd.o: insnsd.c nasm.h insnsi.h insns.h
  34. labels.o: labels.c nasm.h insnsi.h nasmlib.h
  35. listing.o: listing.c nasm.h insnsi.h nasmlib.h listing.h
  36. nasm.o: nasm.c nasm.h insnsi.h nasmlib.h preproc.h parser.h assemble.h labels.h 
  37.  outform.h listing.h
  38. nasmlib.o: nasmlib.c nasm.h insnsi.h nasmlib.h names.c insnsn.c
  39. ndisasm.o: ndisasm.c nasm.h insnsi.h nasmlib.h sync.h disasm.h
  40. outaout.o: outaout.c nasm.h insnsi.h nasmlib.h outform.h
  41. outas86.o: outas86.c nasm.h insnsi.h nasmlib.h outform.h
  42. outbin.o: outbin.c nasm.h insnsi.h nasmlib.h outform.h
  43. outcoff.o: outcoff.c nasm.h insnsi.h nasmlib.h outform.h
  44. outdbg.o: outdbg.c nasm.h insnsi.h nasmlib.h outform.h
  45. outelf.o: outelf.c nasm.h insnsi.h nasmlib.h outform.h
  46. outform.o: outform.c outform.h nasm.h insnsi.h
  47. outobj.o: outobj.c nasm.h insnsi.h nasmlib.h outform.h
  48. outrdf.o: outrdf.c nasm.h insnsi.h nasmlib.h outform.h
  49. outrdf2.o: outrdf2.c nasm.h insnsi.h nasmlib.h outform.h
  50. zoutieee.o: zoutieee.c nasm.h insnsi.h nasmlib.h outform.h
  51. parser.o: parser.c nasm.h insnsi.h nasmlib.h parser.h float.h names.c insnsn.c
  52. preproc.o: preproc.c nasm.h insnsi.h nasmlib.h macros.c
  53. sync.o: sync.c sync.h
  54. # These source files are automagically generated from a single
  55. # instruction-table file by a Perl script. They're distributed,
  56. # though, so it isn't necessary to have Perl just to recompile NASM
  57. # from the distribution.
  58. insnsa.c insnsd.c insnsi.h insnsn.c: insns.dat insns.pl
  59. perl insns.pl insns.dat
  60. # This source file is generated from the standard macros file
  61. # `standard.mac' by another Perl script. Again, it's part of the
  62. # standard distribution.
  63. macros.c: standard.mac macros.pl
  64. perl macros.pl standard.mac
  65. clean:
  66. rm -f *.o nasm ndisasm