home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / xbftp10.zip / makefile < prev    next >
Makefile  |  1998-06-18  |  410b  |  23 lines

  1. #
  2. # Makefile for XBFtp-API examples
  3. #
  4. # Copyright (C) 1998, homburg Softwaretechnik
  5. # All Rights Reserved
  6. #
  7.  
  8. COMP=xpp
  9. COMPPARAM= /b /pre
  10. LINK=link386
  11. LINKPARAM=/PM:VIO /DE /map
  12.  
  13. all: ftptest.exe
  14.    @echo --- $** fertig ! ---
  15.  
  16. ftptest.exe: ftptest.obj
  17.    $(LINK) $(LINKPARAM) ftptest.obj ,,,xbftp.lib xpprt1.lib os2386.lib,,
  18.  
  19. ftptest.obj: ftptest.prg
  20.    $(COMP) $(COMPPARAM) ftptest.prg
  21.  
  22.  
  23.