home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-12-04 | 568 b | 26 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- !MESSAGE Building OleISAPI.dll...
- !MESSAGE
-
- .SUFFIXES: .def .lib
-
- Proj = OleISAPI
-
- !include <win32.mak>
-
- $(Proj).Dll: $(Proj).Obj $(Proj).Exp
- $(link) $(dlllflags) -base:0x1C000000 -out:$@ $** $(olelibsdll)
-
- # Update the object file if necessary
-
- $(Proj).obj: $(Proj).Cpp
- $(cc) $(cflags) $(cvarsdll) $(Proj).Cpp
-
- # .Def.Exp:
- $(Proj).exp: $(Proj).Def
- $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$(@B).Lib $(@B).Obj
-
- clean:
- del $(Proj).Dll $(Proj).Obj $(Proj).Exp $(Proj).Lib
-