home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-10-04 | 552 b | 28 lines |
- TARGETOS=WINNT
- APPVER=4.0
-
- .SUFFIXES: .def .lib
-
- !include <win32.mak>
-
- !if defined(clean)
- target: clean
- !endif
-
- ISrvMon.Dll: $(@B).obj $(@B).Exp
- $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$@ $** $(guilibsdll) $(int64lib)
-
- ISrvMon.Exp: $(@B).Def $(@B).Obj
-
- .def.Exp:
- $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$(@B).Lib $(@B).Obj
-
- .c.obj:
- $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).c -Fo$@
-
- .cpp.obj:
- $(cc) $(cdebug) $(cflags) $(cvarsdll) $(@B).cpp -Fo$@
-
- clean:
- del *.Dll *.Obj *.Exp *.Lib
-