home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / drdobbs / 1988 / 06 / deparse.mak < prev    next >
Text File  |  1979-12-31  |  640b  |  20 lines

  1.   1 #   File:       deparse.make
  2.   2 #   Target:     deparse
  3.   3 #   Sources:    deparse.c Stubs.c
  4.   4 
  5.   5 # set coptions for C compiler
  6.   6 COptions    = -d DEBUG -g
  7.   7 
  8.   8 deparse.c.o _ deparse.make deparse.c
  9.   9     C {COptions} deparse.c
  10.  10 Stubs.c.o _ deparse.make Stubs.c
  11.  11     C {COptions} Stubs.c
  12.  12 deparse __ deparse.make deparse.c.o Stubs.c.o
  13.  13     Link -d -t MPST -c 'MPS ' _
  14.  14         deparse.c.o _
  15.  15         Stubs.c.o _
  16.  16         "{CLibraries}"CRuntime.o _
  17.  17         "{CLibraries}"StdCLib.o _
  18.  18         "{CLibraries}"CInterface.o _
  19.  19         -o deparse
  20.  20