home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 19 Printer / 19-Printer.zip / lj2up2.zip / LJ2UP < prev    next >
Text File  |  1988-07-15  |  766b  |  31 lines

  1. #
  2. #   Makefile for LJ2UP.C, Microsoft C ver 5.1 MAKE
  3. #
  4. #
  5. # Important Change The LIBPATH for your installation. It is necessary for
  6. #  Bind to find the libs
  7. #
  8. CFLAGS = /c /Gs /Os /G2 /AS /W3 /FPa /Zp /Lp /DLINT_ARGS
  9. LFLAGS = /NOD
  10. LIBPATH = d:\msdev\lib\\
  11.  
  12. stoi.obj : stoi.c
  13.     cl $(CFlAGS) stoi.c
  14.  
  15. getargs.obj : getargs.c getargs.h
  16.     cl $(CFlAGS) getargs.c
  17.  
  18. fsearch.obj : fsearch.c
  19.     cl $(CFlAGS) fsearch.c
  20.  
  21. lj2up.obj : lj2up.c getargs.h getargs.pro stoi.h fsearch.h
  22.     cl $(CFlAGS) lj2up.c
  23.  
  24. lj2up-p.exe : lj2up.obj fsearch.obj getargs.obj stoi.obj
  25.     link $(LFLAGS) lj2up+fsearch+getargs+stoi,lj2up-p.exe,,slibcap+doscalls;
  26.  
  27. lj2up.exe : lj2up-p.exe
  28.     bind lj2up-p.exe $(LIBPATH)doscalls.lib $(LIBPATH)api.lib /o lj2up.exe
  29. 
  30. 
  31.