home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / pisces / flex / Imakefile < prev    next >
Encoding:
Makefile  |  1991-09-04  |  1.3 KB  |  44 lines

  1. /*****************************************************************************
  2. //
  3. // Copyright (C) 1991 Texas Instruments Incorporated.
  4. //
  5. // Permission is granted to any individual or institution to use, copy, modify,
  6. // and distribute this software, provided that this complete copyright and
  7. // permission notice is maintained, intact, in all copies and supporting
  8. // documentation.
  9. //
  10. // Texas Instruments Incorporated provides this software "as is" without
  11. // express or implied warranty.
  12. //
  13.  *****************************************************************************
  14.  *
  15.  *    Author: Martin Neath
  16.  *    Filename: Imakefile
  17.  *    Module: pisces/flex
  18.  *    Purpose: Imake file for flex 
  19.  *    Creation Date: 05/11/90
  20.  *
  21.  *****************************************************************************/
  22.  
  23. LINKDEP = 
  24. ALLCPLUSDEFS = 
  25.  
  26. HDRS = flexdef.h
  27.  
  28. SRCS = ccl.$(C) dfa.$(C) ecs.$(C) gen.$(C) main.$(C) misc.$(C) \
  29.     nfa.$(C) scan.$(C) sym.$(C) tblcmp.$(C) yylex.$(C)
  30.  
  31. YACCSRC = parse.y    
  32.  
  33. OBJS = ccl.$(OBJ) dfa.$(OBJ) ecs.$(OBJ) gen.$(OBJ) main.$(OBJ) misc.$(OBJ) \
  34.     nfa.$(OBJ) flxparse.$(OBJ) scan.$(OBJ) sym.$(OBJ) tblcmp.$(OBJ) \
  35.     yylex.$(OBJ)
  36.  
  37. LOCAL_C_DEFS = $(DFLAG)SKELFILE=$(QUOTE)$(FLEXSRC)$(PATHSEP)flex.skl$(QUOTE) \
  38. $(DFLAG)SHORT_FILE_NAMES
  39.  
  40. All(flex)
  41. OptimizeCObject()
  42. CYaccParser(flxparse)
  43. CProgram(flex)
  44.