home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-07-08 | 434 b | 18 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- APPVER=4.0
-
- !include <win32.mak>
-
- all: wbpost.exe
-
- # Update the object file if necessary
-
- wbpost.obj: wbpost.cpp
- $(cc) $(cflags) $(cvars) $(cdebug) wbpost.cpp
-
- # Update the executable file if necessary, and if so, add the resource back in.
-
- wbpost.exe: wbpost.obj
- $(link) $(linkdebug) $(conlflags) -out:wbpost.exe wbpost.obj $(conlibs) $(guilibs) webpost.lib
-