makefile.win

来自「Linux/windows 环境下跨平台开发程序」· WIN 代码 · 共 98 行

WIN
98
字号
# Makefile.win, Copyright 2002-2004 R.Lackner# ##    This file is part of RLPlot.##    RLPlot is free software; you can redistribute it and/or modify#    it under the terms of the GNU General Public License as published by#    the Free Software Foundation; either version 2 of the License, or#    (at your option) any later version.##    RLPlot is distributed in the hope that it will be useful,#    but WITHOUT ANY WARRANTY; without even the implied warranty of#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#    GNU General Public License for more details.##    You should have received a copy of the GNU General Public License#    along with RLPlot; if not, write to the Free Software#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA#CC = cl.exeCFLAGS = /nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FDLIBS = kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib\ shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.libSRCDIR =GENOBJ = exprlp.obj rlplot.obj Output.obj Utils.obj UtilObj.obj\ FileIO.obj Export.obj PlotObs.obj Axes.obj mfcalc.obj rlp_math.objOBJECTS = WinSpec.obj Output.obj Utils.obj UtilObj.obj\ TheDialog.obj rlplot.obj FileIO.obj PropertyDlg.obj spreadwi.obj\ Export.obj PlotObs.obj ODbuttons.obj Axes.obj mfcalc.obj rlp_math.objRLPlot: $(OBJECTS) RLPLOT.res	link.exe $(LIBS) /nologo /subsystem:windows /incremental:no /pdb:"RLPlot.pdb"\ /machine:I386 /out:"RLPlot.exe" $(OBJECTS) RLPLOT.res exprlp: $(GENOBJ)	$(CC) -o exprlp $(GENOBJ)clean:	del *.obj	del *.pch	del *.idb	del *.res####### CompileRLPLOT.res: $(SRCDIR)RLPLOT.RC	rc.exe /d "NDEBUG" $(SRCDIR)RLPLOT.RCmfcalc.obj: $(SRCDIR)mfcalc.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)mfcalc.cpprlp_math.obj: $(SRCDIR)rlp_math.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)rlp_math.cppexprlp.obj: $(SRCDIR)exprlp.cpp	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)exprlp.cppWinSpec.obj: $(SRCDIR)WinSpec.cpp $(SRCDIR)WinSpec.h $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)WinSpec.cppOutput.obj: $(SRCDIR)Output.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)Output.cppUtils.obj: $(SRCDIR)Utils.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)Utils.cppUtilObj.obj: $(SRCDIR)UtilObj.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)UtilObj.cppTheDialog.obj: $(SRCDIR)TheDialog.cpp $(SRCDIR)TheDialog.h $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)TheDialog.cpprlplot.obj: $(SRCDIR)rlplot.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)rlplot.cppFileIO.obj: $(SRCDIR)FileIO.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)FileIO.cppPropertyDlg.obj: $(SRCDIR)PropertyDlg.cpp $(SRCDIR)rlplot.h $(SRCDIR)TheDialog.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)PropertyDlg.cppspreadwi.obj: $(SRCDIR)spreadwi.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)spreadwi.cppExport.obj: $(SRCDIR)Export.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)Export.cppPlotObs.obj: $(SRCDIR)PlotObs.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)PlotObs.cppODbuttons.obj: $(SRCDIR)ODbuttons.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)ODbuttons.cpp	Axes.obj: $(SRCDIR)Axes.cpp $(SRCDIR)rlplot.h	$(CC) $(CFLAGS) -o $@ -c $(SRCDIR)Axes.cpp

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?