#
# Makefile for XBFtp-API examples
#
# Copyright (C) 1998, homburg Softwaretechnik
# All Rights Reserved
#

COMP=xpp
COMPPARAM= /b /pre
LINK=link386
LINKPARAM=/PM:VIO /DE /map

all: ftptest.exe
   @echo --- $** fertig ! ---

ftptest.exe: ftptest.obj
   $(LINK) $(LINKPARAM) ftptest.obj ,,,xbftp.lib xpprt1.lib os2386.lib,,

ftptest.obj: ftptest.prg
   $(COMP) $(COMPPARAM) ftptest.prg


