# # $Header: /home/gene/library/website/docsrc/psw/RCS/Makefile,v 395.1 2008/04/20 17:25:47 gene Exp $ # # Copyright (c) 2004 Gene Michael Stover. All rights reserved. # # This program 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.1 of the # License, or (at your option) any later version. # # This program 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 this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 # USA # bindir=. incdir=/I "C:\Program Files\Microsoft SDK\include" /I "C:\Program Files\Microsoft Visual Studio\VC98\Include" /I "C:\Program Files\Microsoft Visual Studio\VC98\ATL\Include" CPP=cl.exe RSC=rc.exe CFLAGS=/nologo /ML /W3 /GX /O2 /D "WIN32" /D "_CONSOLE" $(incdir) # It had /D "_MBCS" after _CONSOLE. # It had "/FD"immediately before /c. COMPILE_c=$(CPP) $(CFLAGS) /c LINK32=link.exe LINK32_FLAGS=/LIBPATH:"C:\Program Files\Microsoft SDK\Lib" /LIBPATH:"C:\Program Files\Microsoft Visual Studio\VC98\Lib" kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib Ws2_32.lib /nologo /subsystem:console /incremental:no /machine:I386 LINK_c=$(LINK32) $(LINK32_FLAGS) all : print-postscript.exe check : all clean : realclean : clean print-postscript.exe : print-postscript.obj $(LINK_c) /out:print-postscript.exe print-postscript.obj print-postscript.obj : print-postscript.c $(COMPILE_c) print-postscript.c # --- end of file ---