📄 28
字号:
Received: from copland.udel.edu by huey.udel.edu id aa07049; 26 Oct 96 12:18 EDTReceived: from dfw-ix3.ix.netcom.com (dfw-ix3.ix.netcom.com [206.214.98.3]) by copland.udel.edu (8.7.6/8.7.3) with SMTP id MAA28517 for <mills@udel.edu>; Sat, 26 Oct 1996 12:18:35 -0400 (EDT)Received: from sverige (pas-ca5-01.ix.netcom.com [199.35.218.161]) by dfw-ix3.ix.netcom.com (8.6.13/8.6.12) with SMTP id JAA29588 for <mills@udel.edu>; Sat, 26 Oct 1996 09:18:01 -0700Message-ID: <32723948.5FFB@ix.netcom.com>Date: Sat, 26 Oct 1996 09:16:08 -0700From: Greg Schueman <schueman@ix.netcom.com>Reply-To: schueman@ix.netcom.comX-Mailer: Mozilla 3.0Gold (Win95; U)MIME-Version: 1.0To: mills@udel.eduSubject: XNTP for NT - forgot one fileContent-Type: multipart/mixed; boundary="------------32C73E425B66"This is a multi-part message in MIME format.--------------32C73E425B66Content-Type: text/plain; charset=us-asciiContent-Transfer-Encoding: 7bitDavid, I forgot to include the NT makefile for instsrv, instsrv.mak,in my previous email.This belongs under scripts/wininstall/instsrv.Somehow it got deleted from the source distribution, so I'madding it back in. This gives people the option to installthe code via the command line, just in case they don't havethe InstallShield SDK. The SDK is no longer included in newer MS Visual C++ versions beyond 4.0. There is a different product called InstallShield Express that replaces it.Anyone who owns the full InstallShield 3 product can usethe included code, but in general it will be less useful unlesssomeone creates a set of binaries and distributes them for everyone else. I don't plan on doing that, but I wanted tomention it for completeness.-Greg Schueman--------------32C73E425B66Content-Type: text/plain; charset=us-ascii; name="Instsrv.mak"Content-Transfer-Encoding: 7bitContent-Disposition: inline; filename="Instsrv.mak"# Microsoft Developer Studio Generated NMAKE File, Format Version 4.10# ** DO NOT EDIT **# TARGTYPE "Win32 (x86) Console Application" 0x0103!IF "$(CFG)" == ""CFG=instsrv - Win32 Debug!MESSAGE No configuration specified. Defaulting to instsrv - Win32 Debug.!ENDIF !IF "$(CFG)" != "instsrv - Win32 Release" && "$(CFG)" !=\ "instsrv - Win32 Debug"!MESSAGE Invalid configuration "$(CFG)" specified.!MESSAGE You can specify a configuration when running NMAKE on this makefile!MESSAGE by defining the macro CFG on the command line. For example:!MESSAGE !MESSAGE NMAKE /f "instsrv.mak" CFG="instsrv - Win32 Debug"!MESSAGE !MESSAGE Possible choices for configuration are:!MESSAGE !MESSAGE "instsrv - Win32 Release" (based on "Win32 (x86) Console Application")!MESSAGE "instsrv - Win32 Debug" (based on "Win32 (x86) Console Application")!MESSAGE !ERROR An invalid configuration is specified.!ENDIF !IF "$(OS)" == "Windows_NT"NULL=!ELSE NULL=nul!ENDIF ################################################################################# Begin ProjectCPP=cl.exeRSC=rc.exe!IF "$(CFG)" == "instsrv - Win32 Release"# PROP BASE Use_MFC 0# PROP BASE Use_Debug_Libraries 0# PROP BASE Output_Dir "WinRel"# PROP BASE Intermediate_Dir "WinRel"# PROP Use_MFC 0# PROP Use_Debug_Libraries 0# PROP Output_Dir "WinRel"# PROP Intermediate_Dir "WinRel"OUTDIR=.\WinRelINTDIR=.\WinRelALL : "$(OUTDIR)\instsrv.exe" "$(OUTDIR)\instsrv.bsc"CLEAN : -@erase "$(INTDIR)\instsrv.obj" -@erase "$(INTDIR)\instsrv.sbr" -@erase "$(OUTDIR)\instsrv.bsc" -@erase "$(OUTDIR)\instsrv.exe""$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /FR /YX /c# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /FR /YX /cCPP_PROJ=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE"\ /FR"$(INTDIR)/" /Fp"$(INTDIR)/instsrv.pch" /YX /Fo"$(INTDIR)/" /c CPP_OBJS=.\WinRel/CPP_SBRS=.\WinRel/# ADD BASE RSC /l 0x409 /d "NDEBUG"# ADD RSC /l 0x409 /d "NDEBUG"BSC32=bscmake.exe# ADD BASE BSC32 /nologo# ADD BSC32 /nologoBSC32_FLAGS=/nologo /o"$(OUTDIR)/instsrv.bsc" BSC32_SBRS= \ "$(INTDIR)\instsrv.sbr""$(OUTDIR)\instsrv.bsc" : "$(OUTDIR)" $(BSC32_SBRS) $(BSC32) @<< $(BSC32_FLAGS) $(BSC32_SBRS)<<LINK32=link.exe# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib /nologo /subsystem:console /incremental:no\ /pdb:"$(OUTDIR)/instsrv.pdb" /machine:I386 /out:"$(OUTDIR)/instsrv.exe" LINK32_OBJS= \ "$(INTDIR)\instsrv.obj""$(OUTDIR)\instsrv.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS)<<!ELSEIF "$(CFG)" == "instsrv - Win32 Debug"# PROP BASE Use_MFC 0# PROP BASE Use_Debug_Libraries 1# PROP BASE Output_Dir "WinDebug"# PROP BASE Intermediate_Dir "WinDebug"# PROP Use_MFC 0# PROP Use_Debug_Libraries 1# PROP Output_Dir "WinDebug"# PROP Intermediate_Dir "WinDebug"OUTDIR=.\WinDebugINTDIR=.\WinDebugALL : "$(OUTDIR)\instsrv.exe" "$(OUTDIR)\instsrv.bsc"CLEAN : -@erase "$(INTDIR)\instsrv.obj" -@erase "$(INTDIR)\instsrv.sbr" -@erase "$(INTDIR)\vc40.idb" -@erase "$(INTDIR)\vc40.pdb" -@erase "$(OUTDIR)\instsrv.bsc" -@erase "$(OUTDIR)\instsrv.exe" -@erase "$(OUTDIR)\instsrv.ilk" -@erase "$(OUTDIR)\instsrv.pdb""$(OUTDIR)" : if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"# ADD BASE CPP /nologo /W3 /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /FR /YX /c# ADD CPP /nologo /ML /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /FR /YX /cCPP_PROJ=/nologo /ML /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE"\ /FR"$(INTDIR)/" /Fp"$(INTDIR)/instsrv.pch" /YX /Fo"$(INTDIR)/" /Fd"$(INTDIR)/"\ /c CPP_OBJS=.\WinDebug/CPP_SBRS=.\WinDebug/# ADD BASE RSC /l 0x409 /d "_DEBUG"# ADD RSC /l 0x409 /d "_DEBUG"BSC32=bscmake.exe# ADD BASE BSC32 /nologo# ADD BSC32 /nologoBSC32_FLAGS=/nologo /o"$(OUTDIR)/instsrv.bsc" BSC32_SBRS= \ "$(INTDIR)\instsrv.sbr""$(OUTDIR)\instsrv.bsc" : "$(OUTDIR)" $(BSC32_SBRS) $(BSC32) @<< $(BSC32_FLAGS) $(BSC32_SBRS)<<LINK32=link.exe# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib/NOLOGO /subsystem:console /debug /machine:I386# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386LINK32_FLAGS=kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib\ advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib\ odbccp32.lib /nologo /subsystem:console /incremental:yes\ /pdb:"$(OUTDIR)/instsrv.pdb" /debug /machine:I386 /out:"$(OUTDIR)/instsrv.exe" LINK32_OBJS= \ "$(INTDIR)\instsrv.obj""$(OUTDIR)\instsrv.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS) $(LINK32) @<< $(LINK32_FLAGS) $(LINK32_OBJS)<<!ENDIF .c{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_OBJS)}.obj: $(CPP) $(CPP_PROJ) $< .c{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cpp{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< .cxx{$(CPP_SBRS)}.sbr: $(CPP) $(CPP_PROJ) $< ################################################################################# Begin Target# Name "instsrv - Win32 Release"# Name "instsrv - Win32 Debug"!IF "$(CFG)" == "instsrv - Win32 Release"!ELSEIF "$(CFG)" == "instsrv - Win32 Debug"!ENDIF ################################################################################# Begin Source FileSOURCE=.\instsrv.c"$(INTDIR)\instsrv.obj" : $(SOURCE) "$(INTDIR)""$(INTDIR)\instsrv.sbr" : $(SOURCE) "$(INTDIR)"# End Source File# End Target# End Project################################################################################--------------32C73E425B66--
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -