home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
code
/
smpi
/
makefile
next >
Wrap
Makefile
|
1995-05-18
|
230b
|
12 lines
# Nmake macros for building Windows 32-Bit apps
!include <ntwin32.mak>
all: smpi.exe
smpi.obj: smpi.c
$(cc) $(cflags) $(cvars) smpi.c
smpi.exe: smpi.obj
$(link) $(conflags) -out:smpi.exe smpi.obj $(conlibs)