Mercurial > fife-parpg
view ext/libpng-1.2.29/scripts/makefile.intel @ 502:96c4922c1c24
Added some imports to the world initialization code. I had to do this because you were not able to use the editor with the shooter demo map files without manually adding the imports to the map file. You do not have to do this now (note the TODO in the comments). I have also hard coded the camera zoom level to ensure the map editors zoom level at the time of saving the map is not used.
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 18 May 2010 14:48:33 +0000 |
parents | 4a0efb7baf70 |
children |
line wrap: on
line source
# Makefile for libpng # Microsoft Visual C++ with Intel C/C++ Compiler 4.0 and later # Copyright (C) 2000, Pawel Mrochen, based on makefile.msc which is # copyright 1995 Guy Eric Schalnat, Group 42, Inc. # For conditions of distribution and use, see copyright notice in png.h # To use, do "nmake /f scripts\makefile.intel" # Where the zlib library and include files are located ZLIBLIB=..\zlib ZLIBINC=..\zlib # Target CPU CPU=6 # Pentium II #CPU=5 # Pentium # Calling convention CALLING=r # __fastcall #CALLING=z # __stdcall #CALLING=d # __cdecl # Uncomment next to put error messages in a file #ERRFILE=>>pngerrs # -------------------------------------------------------------------------- CC=icl -c CFLAGS=-O2 -G$(CPU)$(CALLING) -Qip -Qunroll4 -I$(ZLIBINC) -nologo LD=link LDFLAGS=/SUBSYSTEM:CONSOLE /NOLOGO O=.obj OBJS=png$(O) pngset$(O) pngget$(O) pngrutil$(O) pngtrans$(O) pngwutil$(O) \ pngmem$(O) pngpread$(O) pngread$(O) pngerror$(O) pngwrite$(O) \ pngrtran$(O) pngwtran$(O) pngrio$(O) pngwio$(O) all: test png$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngset$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngget$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngread$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngpread$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngrtran$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngrutil$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngerror$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngmem$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngrio$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngwio$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngtest$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngtrans$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngwrite$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngwtran$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) pngwutil$(O): png.h pngconf.h $(CC) $(CFLAGS) $*.c $(ERRFILE) libpng.lib: $(OBJS) if exist libpng.lib del libpng.lib lib /NOLOGO /OUT:libpng.lib $(OBJS) pngtest.exe: pngtest.obj libpng.lib $(LD) $(LDFLAGS) /OUT:pngtest.exe pngtest.obj libpng.lib $(ZLIBLIB)\zlib.lib test: pngtest.exe pngtest.exe # End of makefile for libpng