makefile1
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:3k
源码类别:

编译器/解释器

开发平台:

Others

  1. #
  2. # Makefile for ANTLR 1.33
  3. #
  4. # SOFTWARE RIGHTS
  5. #
  6. # We reserve no LEGAL rights to the Purdue Compiler Construction Tool
  7. # Set (PCCTS) -- PCCTS is in the public domain.  An individual or
  8. # company may do whatever they wish with source code distributed with
  9. # PCCTS or the code generated by PCCTS, including the incorporation of
  10. # PCCTS, or its output, into commerical software.
  11. # We encourage users to develop software with PCCTS.  However, we do ask
  12. # that credit is given to us for developing PCCTS.  By "credit",
  13. # we mean that if you incorporate our source code into one of your
  14. # programs (commercial product, research project, or otherwise) that you
  15. # acknowledge this fact somewhere in the documentation, research report,
  16. # etc...  If you like PCCTS and have developed a nice tool with the
  17. # output, please mention that you developed it using PCCTS.  In
  18. # addition, we ask that this header remain intact in our source code.
  19. # As long as these guidelines are kept, we expect to continue enhancing
  20. # this system and expect to make other tools available as they are
  21. # completed.
  22. #
  23. # ANTLR 1.33
  24. # Terence Parr
  25. # Parr Research Corporation
  26. # with Purdue University
  27. # and AHPCRC, University of Minnesota
  28. # 1989-1995
  29. #
  30. # Ported to Borland C++, IBM C-Set/2 and Microsoft 6.0 by
  31. # Ed Harfmann
  32. # Micro Data Base Systems
  33. # Lafayette, Indiana
  34. #
  35. SET=../support/set
  36. PCCTS_H=../h
  37. #
  38. #   UNIX  (default)
  39. #
  40. CC=cc
  41. ANTLR=../bin/antlr
  42. DLG=../bin/dlg
  43. OBJ_EXT=o
  44. OUT_OBJ = -o
  45. ANSI=-ansi
  46. AOTHER=
  47. CFLAGS= -O0 -g -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN $(COTHER) $(ANSI)
  48. #
  49. # SGI Users, use this CFLAGS
  50. #
  51. #CFLAGS= -O -I. -I$(SET) -I$(PCCTS_H) -DUSER_ZZSYN -woff 3262
  52. OBJ=antlr.o scan.o err.o bits.o build.o fset2.o fset.o gen.o 
  53.         globals.o hash.o lex.o main.o misc.o set.o pred.o egman.o mrhoist.o fcache.o $(OBJOTHER)
  54. antlr : $(OBJ) $(SRC)
  55. $(CC) $(CFLAGS) -o antlr $(OBJ)
  56. mv antlr ../bin
  57. # what files does PCCTS generate (both ANTLR and DLG)
  58. PCCTS_GEN=antlr.c scan.c err.c tokens.h mode.h parser.dlg stdpccts.h remap.h
  59. SRC=antlr.c scan.c err.c bits.c build.c fset2.c fset.c gen.c globals.c 
  60. hash.c lex.c main.c misc.c $(SET)/set.c pred.c egman.c mrhoist.c fcache.c
  61. #
  62. # Don't worry about the ambiguity messages coming from antlr
  63. # for making antlr.c etc...  [should be 10 of them, I think]
  64. #
  65. antlr.c stdpccts.h parser.dlg tokens.h err.c : antlr.g
  66. $(ANTLR) -gh antlr.g $(AOTHER)
  67. antlr.o : antlr.c mode.h tokens.h
  68. scan.o : scan.c mode.h tokens.h
  69. scan.c mode.h: parser.dlg
  70. $(DLG) -C2 parser.dlg scan.c
  71. set.o : $(SET)/set.c
  72. $(CC) $(CFLAGS) -c -o set.o $(SET)/set.c
  73. #
  74. # ****** These next targets are common to UNIX and PC world ********
  75. #
  76. #clean up all the intermediate files
  77. clean:
  78. rm -f *.$(OBJ_EXT) core
  79. #remove everything in clean plus the PCCTS files generated
  80. scrub:
  81. rm -f $(PCCTS_GEN) *.$(OBJ_EXT) core