home *** CD-ROM | disk | FTP | other *** search
/ World of A1200 / World_Of_A1200.iso / programs / text / tex / dmakefile < prev    next >
Makefile  |  1995-02-27  |  216b  |  14 lines

  1. CC    = dcc
  2. DEFS    = -DMAXPATHLEN=256 -DNOFILE=30
  3. CFLAGS    = $(DEFS)
  4. LEX    = flex
  5. LFLAGS  = 
  6.  
  7.  
  8. detex:         lex.yy.c detex.h
  9.         $(CC) $(CFLAGS) -o detex lex.yy.c 
  10.  
  11. lex.yy.c:    detex.l
  12.         sed -f states.sed detex.l | $(LEX) $(LFLAGS)
  13.  
  14.