Bringing libpng-1.5.10 into the main branch
[AROS.git] / workbench / libs / png / scripts / makefile.intel
blob1cb9ef37497f8cc944e939cc6c6a391075b0d676
1 # Makefile for libpng
2 # Microsoft Visual C++ with Intel C/C++ Compiler 4.0 and later
4 # Copyright (C) 2006 Glenn Randers-Pehrson
5 # Copyright (C) 2000, Pawel Mrochen, based on makefile.msc which is
6 # copyright 1995 Guy Eric Schalnat, Group 42, Inc.
8 # This code is released under the libpng license.
9 # For conditions of distribution and use, see the disclaimer
10 # and license in png.h
12 # To use, do "nmake /f scripts\makefile.intel"
14 # ------------------- Intel C/C++ Compiler 4.0 and later -------------------
16 # Where the zlib library and include files are located
17 ZLIBLIB=..\zlib
18 ZLIBINC=..\zlib
20 # Target CPU
21 CPU=6           # Pentium II
22 #CPU=5          # Pentium
24 # Calling convention
25 CALLING=r       # __fastcall
26 #CALLING=z      # __stdcall
27 #CALLING=d      # __cdecl
29 # Uncomment next to put error messages in a file
30 #ERRFILE=>>pngerrs
32 # --------------------------------------------------------------------------
34 CC=icl -c
35 CFLAGS=-O2 -G$(CPU)$(CALLING) -Qip -Qunroll4 -I$(ZLIBINC) -nologo
36 LD=link
37 LDFLAGS=/SUBSYSTEM:CONSOLE /NOLOGO
39 O=.obj
41 OBJS=png$(O) pngset$(O) pngget$(O) pngrutil$(O) pngtrans$(O) pngwutil$(O) \
42 pngmem$(O) pngpread$(O) pngread$(O) pngerror$(O) pngwrite$(O) \
43 pngrtran$(O) pngwtran$(O) pngrio$(O) pngwio$(O)
45 all: test
47 # see scripts/pnglibconf.mak for more options
48 pnglibconf.h: scripts/pnglibconf.h.prebuilt
49         cp scripts/pnglibconf.h.prebuilt $@
51 png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
52         $(CC) $(CFLAGS) $*.c $(ERRFILE)
54 pngset$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
55         $(CC) $(CFLAGS) $*.c $(ERRFILE)
57 pngget$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
58         $(CC) $(CFLAGS) $*.c $(ERRFILE)
60 pngread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
61         $(CC) $(CFLAGS) $*.c $(ERRFILE)
63 pngpread$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
64         $(CC) $(CFLAGS) $*.c $(ERRFILE)
66 pngrtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
67         $(CC) $(CFLAGS) $*.c $(ERRFILE)
69 pngrutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
70         $(CC) $(CFLAGS) $*.c $(ERRFILE)
72 pngerror$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
73         $(CC) $(CFLAGS) $*.c $(ERRFILE)
75 pngmem$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
76         $(CC) $(CFLAGS) $*.c $(ERRFILE)
78 pngrio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
79         $(CC) $(CFLAGS) $*.c $(ERRFILE)
81 pngwio$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
82         $(CC) $(CFLAGS) $*.c $(ERRFILE)
84 pngtrans$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
85         $(CC) $(CFLAGS) $*.c $(ERRFILE)
87 pngwrite$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
88         $(CC) $(CFLAGS) $*.c $(ERRFILE)
90 pngwtran$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
91         $(CC) $(CFLAGS) $*.c $(ERRFILE)
93 pngwutil$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
94         $(CC) $(CFLAGS) $*.c $(ERRFILE)
96 libpng.lib: $(OBJS)
97         if exist libpng.lib del libpng.lib
98         lib /NOLOGO /OUT:libpng.lib $(OBJS)
100 pngtest.exe: pngtest.obj libpng.lib
101         $(LD) $(LDFLAGS) /OUT:pngtest.exe pngtest.obj libpng.lib $(ZLIBLIB)\zlib.lib
103 pngtest$(O): png.h pngconf.h pnglibconf.h
104         $(CC) $(CFLAGS) $*.c $(ERRFILE)
106 test: pngtest.exe
107         pngtest.exe
110 # End of makefile for libpng