home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-11-14 | 553 b | 28 lines |
- TARGETOS=WINNT
- APPVER=4.0
-
- .SUFFIXES: .def .lib
-
- !include <win32.mak>
-
- !if defined(clean)
- target: clean
- !endif
-
- UpCase.Dll: $(@B).obj $(@B).Lib
- $(link) $(linkdebug) $(dlllflags) -base:0x1C000000 -out:$@ $** $(conlibsdll) $(@B).Exp $(int64lib)
-
- UpCase.Lib: $(@B).Def $(@B).Obj
-
- .def.lib:
- $(implib) -machine:$(CPU) -nologo -Def:$(@B).Def -Out:$@ $(@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
-