home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-12-23 | 1.3 KB | 31 lines |
- ############################################################################
- # RxComm.mak
- #
- # NOTE: This code has been released into the Public Domain by the
- # author. This code has NOT been extensivly tested, being a
- # 3 hour development project that was abandoned due to the speed
- # of the REXX interpreter under OS/2. If you find any bugs,
- # or would like to contact the author, he can be reached at:
- #
- # Copyright (c) 1990 by: Mark C. Smith
- # 2638 Marrietta
- # Farmersvilles, Tx 75234
- #
- # 214/484-4470
- #
- # This code requires REXX.LIB and REXXSAA.H which are included with the
- # IBM version of the OS/2 toolkit.
- #
- ############################################################################
-
- CPARMS = -Alfu -G2s -DLINT_ARGS
-
- all: rxcomm.dll
-
- .c.obj:
- cl -c $(CPARMS) $*.c
-
- rxcomm.dll: rxcomm.obj
- link $*,$*.dll,,os2+rexx+llibcdll,$*
-
-