home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
warptlk3.zip
/
TOOLKIT
/
SAMPLES
/
REXX
/
API
/
REXXCALC
/
REXXCALC.MAK
< prev
next >
Wrap
Makefile
|
1995-08-24
|
446b
|
16 lines
# NMAKE-compatible MAKE file for the REXX sample program REXXCALC.EXE.
# This uses the IBM C Set/2 compiler and LINK386
all: rexxcalc.exe rexxcalc.res
rexxcalc.obj: rexxcalc.h rexxcalc.c
icc /c /o rexxcalc.c
rexxcalc.res: rexxcalc.h rexxcalc.rc
rc -r rexxcalc.rc
rexxcalc.exe: rexxcalc.obj rexxcalc.res rexxcalc.def
link386 rexxcalc,rexxcalc,nul,rexx,rexxcalc.def
rc rexxcalc.res rexxcalc.exe