📄 makengui.nt
字号:
# From: Juan Altmayer Pizzorno[SMTP:juan@vms.gmd.de]# Sent: 31 May 1996 10:11# To: J.Smart@ed.ac.uk# Subject: Changes to Tex2RTF## Hello,## Recently I've been looking for a way to create and maintain documentation on# multiple platforms out of a single source -- specifically, something that# prints nicely and can be converted to WinHelp and HTML. I liked the approach# of Tex2RTF, so I set off to give it a try... I found out it would crash# when submitted to a certain LaTeX file I created. I wanted to find out why,# so I went on and worked on compiling on my PC: Windows NT 4.0 beta, Visual# C++ 4.1a. Since all I was interested on was the conversion utility, I tried# to make it work without a GUI. It didn't compile immediately, but after a# few small changes it now works like a charm. Unfortunately it doesn't crash# anymore, so I can't tell why it used to... Anyway, I wanted to contribute# the changes back: I'm appending two files to this message, the first a# description of the changes, and the second a quick-and-dirty makefile that# doesn't require wxWindows to run. Please do write to me if you have any# questions or anything.# # Last but not least, it's great that you took the time and wrote Tex2RTF!!## Quick-and-dirty makefile for building Tex2RTF without the wx# libraries on a Windows NT machine. If you want to use it for# "real", please update the dependancies between object and include# files. Created for Windows NT 4.0 and Visual C++ 4.1.## Juan Altmayer Pizzorno, May 1996#syslibs=kernel32.lib advapi32.libcxxflags=/nologo /MD /W0 /O2 /Zi /D "WIN32" /D "_WIN32" /D "_DEBUG" /clinkflags=$(syslibs) /out:$@ /nologo /debug!if "$(PROCESSOR_ARCHITECTURE)" == "x86"cxxflags=$(cxxflags) /G5 # optimize for pentium!endifcxx=cllink=linkremove=delcxxflags=$(cxxflags) /I wxwin /D wx_msw /D WINVER=0x0400 /D WIN95=0cxxflags=$(cxxflags) /D "NO_GUI" objects=tex2any.obj texutils.obj tex2rtf.obj rtfutils.obj table.obj readshg.obj xlputils.obj htmlutil.objobjects=$(objects) wb_hash.obj wb_list.obj wb_obj.obj wb_utils.objall : tex2rtf.execlean : -$(remove) *.objcleanall : clean -$(remove) *.exe *.pdb *.ilktex2rtf.exe : $(objects) $(link) $(linkflags) $(objects)tex2any.obj : tex2any.cpp tex2any.h $(cxx) $(cxxflags) tex2any.cpptexutils.obj : texutils.cpp tex2any.h $(cxx) $(cxxflags) texutils.cpptex2rtf.obj : tex2rtf.cpp bmputils.h tex2rtf.h tex2any.h $(cxx) $(cxxflags) tex2rtf.cpprtfutils.obj : rtfutils.cpp tex2rtf.h bmputils.h tex2any.h readshg.h table.h $(cxx) $(cxxflags) rtfutils.cpptable.obj : table.cpp table.h $(cxx) $(cxxflags) table.cppreadshg.obj : readshg.cpp readshg.h $(cxx) $(cxxflags) readshg.cppxlputils.obj : xlputils.cpp tex2rtf.h rtfutils.h tex2any.h $(cxx) $(cxxflags) xlputils.cpphtmlutil.obj : htmlutil.cpp tex2rtf.h tex2any.h table.h $(cxx) $(cxxflags) htmlutil.cppwb_hash.obj : wxwin\wb_hash.cpp $(cxx) $(cxxflags) wxwin\wb_hash.cppwb_list.obj : wxwin\wb_list.cpp $(cxx) $(cxxflags) wxwin\wb_list.cppwb_obj.obj : wxwin\wb_obj.cpp $(cxx) $(cxxflags) wxwin\wb_obj.cppwb_utils.obj : wxwin\wb_utils.cpp $(cxx) $(cxxflags) wxwin\wb_utils.cpp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -