home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-09-04 | 1.3 KB | 44 lines |
- /*****************************************************************************
- //
- // Copyright (C) 1991 Texas Instruments Incorporated.
- //
- // Permission is granted to any individual or institution to use, copy, modify,
- // and distribute this software, provided that this complete copyright and
- // permission notice is maintained, intact, in all copies and supporting
- // documentation.
- //
- // Texas Instruments Incorporated provides this software "as is" without
- // express or implied warranty.
- //
- *****************************************************************************
- *
- * Author: Martin Neath
- * Filename: Imakefile
- * Module: pisces/flex
- * Purpose: Imake file for flex
- * Creation Date: 05/11/90
- *
- *****************************************************************************/
-
- LINKDEP =
- ALLCPLUSDEFS =
-
- HDRS = flexdef.h
-
- SRCS = ccl.$(C) dfa.$(C) ecs.$(C) gen.$(C) main.$(C) misc.$(C) \
- nfa.$(C) scan.$(C) sym.$(C) tblcmp.$(C) yylex.$(C)
-
- YACCSRC = parse.y
-
- OBJS = ccl.$(OBJ) dfa.$(OBJ) ecs.$(OBJ) gen.$(OBJ) main.$(OBJ) misc.$(OBJ) \
- nfa.$(OBJ) flxparse.$(OBJ) scan.$(OBJ) sym.$(OBJ) tblcmp.$(OBJ) \
- yylex.$(OBJ)
-
- LOCAL_C_DEFS = $(DFLAG)SKELFILE=$(QUOTE)$(FLEXSRC)$(PATHSEP)flex.skl$(QUOTE) \
- $(DFLAG)SHORT_FILE_NAMES
-
- All(flex)
- OptimizeCObject()
- CYaccParser(flxparse)
- CProgram(flex)
-