home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / libcs / Makefile < prev    next >
Makefile  |  1992-05-15  |  935b  |  30 lines

  1. CFLAGS            = -Iinclude
  2. LIBRARIES        = libcs.a
  3. OFILES            = abspath.o atoh.o atoo.o atot.o boolarg.o\
  4.               bsearch.o chrarg.o ci.o concat.o del.o\
  5.               dfork.o doublearg.o editor.o errmsg.o\
  6.               fdate.o ffilecopy.o \
  7.               filecopy.o floatarg.o fold.o fwantread.o\
  8.               fwantwrite.o getbool.o getchr.o getdouble.o\
  9.               getfloat.o gethex.o gethostattr.o getint.o\
  10.               getlong.o getname.o getoct.o getpwwho.o\
  11.               getsearch.o getshort.o getstab.o getstr.o\
  12.               hexarg.o intarg.o longarg.o\
  13.               makepath.o movefile.o nxtarg.o octarg.o\
  14.               openp.o parsedate.o path.o pathof.o prstab.o\
  15.               quit.o run.o salloc.o searcharg.o searchp.o\
  16.               shortarg.o sindex.o skipto.o\
  17.               srchscore.o stabarg.o stablk.o stabsearch.o\
  18.               stlmatch.o strarg.o \
  19.               wantread.o wantwrite.o
  20.  
  21. $(LIBRARIES): $(OFILES)
  22.     ar rv $@ $?
  23.     ranlib $@
  24.  
  25. parsedate.c: parsedate.y parsedate.scr
  26.     ${YACC} ${_YFLAGS_} $*.y
  27.     ed - y.tab.c < parsedate.scr
  28.     mv y.tab.c $*.c
  29.  
  30.