1# Time-stamp: <03/09/28 18:59:23 ptr> 2# $Id$ 3 4# shared library: 5SO = dll 6# The cooool Microsoft programmers pass LIB from line below into environment var!!!! 7# LIB = lib 8LIBEXT = lib 9EXP = exp 10# executable: 11EXE = .exe 12 13# static library extention: 14ARCH = lib 15AR = lib /nologo 16AR_INS_R = 17AR_EXTR = 18AR_OUT = /out:$@ 19 20INSTALL = copy 21 22INSTALL_SO = $(INSTALL) 23INSTALL_A = $(INSTALL) 24INSTALL_EXE = $(INSTALL) 25 26# compiler, compiler options 27!include $(RULESBASE)/$(USE_MAKE)/$(COMPILER_NAME).mak 28 29