home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xcu16.zip / wlmCompiler / Imakefile < prev    next >
Makefile  |  1991-10-03  |  329b  |  20 lines

  1.            SRCS = wlc.c CuStack.c CuGrow.c CuCopy_ds.c wlc.y wlc.l
  2.            OBJS = wlc.o CuStack.o CuGrow.o CuCopy_ds.o
  3.  
  4. LOCAL_LIBRARIES = $(XTOOLLIB) $(XLIB)
  5.  
  6. ComplexProgramTarget(wlc)
  7.  
  8. wlc.o : wlc.lex.c wlc.y.c
  9.  
  10. wlc.c : ;
  11.  
  12. wlc.lex.c :    wlc.l
  13.     lex wlc.l
  14.     mv lex.yy.c wlc.lex.c
  15.  
  16. wlc.y.c :    wlc.y
  17.     yacc wlc.y
  18.     mv y.tab.c wlc.y.c
  19.  
  20.