home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume19 / plot3d / part01 / makefile < prev    next >
Encoding:
Makefile  |  1991-05-02  |  292 b   |  15 lines

  1. # Makefile for Turbo C++ 1.0
  2. # Place your library directory below
  3.  
  4. LIB=c:\prog\c\lib
  5.  
  6. plot3d.exe: plot.obj calc.obj plot3d.obj graph.obj
  7.     tlink /c /x $(LIB)\c0h plot3d plot calc graph,plot3d,,\
  8.          $(LIB)\graphics $(LIB)\emu $(LIB)\mathh $(LIB)\ch
  9.  
  10. .c.obj: 
  11.     bcc -mh -c -G $*.c
  12.  
  13.  
  14.  
  15.