home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / CMDS / beav.1.40.lzh / BEAV140 / Makefile < prev    next >
Makefile  |  1995-08-28  |  773b  |  22 lines

  1. # This is the makefile for OSK
  2. CFLAGS=  -DUNIX -DNOPROTO -t=/r0 -w=/dd/lib -v=/h0/blarslib/defs # -g
  3. CC= cc
  4.  
  5. OFILES=        basic.r ebcdic.r fileio.r region.r text.r wangpc.r \
  6.     buffer.r echo.r language.r main.r search.r tty.r window.r \
  7.     cinfo.r extend.r kbd.r spawn.r ttyio.r termio_osk.r tcap.r word.r \
  8.     display.r file.r line.r random.r symbol.r ttykbd.r format.r osk.r
  9.  
  10.  
  11. CFILES=     basic.c ebcdic.c fileio.c region.c text.c wangpc.c \
  12.     buffer.c echo.c language.c main.c search.c tty.c window.c \
  13.     cinfo.c extend.c kbd.c spawn.c ttyio.c termio_osk.c tcap.c word.c \
  14.     display.c file.c line.c random.c symbol.c ttykbd.c osk.c
  15.  
  16. HFILES=     def.h
  17.  
  18. beav:     $(OFILES)
  19.     $(CC) $(CFLAGS) $(OFILES) -f=beav -l=/h0/blarslib/blarslib.l -l=/dd/lib/termlib.l # -g
  20.  
  21. (OFILES):  $(HFILES)
  22.