mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng16] $(CP) is now used alongside $(RM_F). Also, use 'copy' instead
of 'cp' where applicable, and applied other minor makefile changes.
This commit is contained in:
parent
6572c7dab5
commit
82200daec2
2
ANNOUNCE
2
ANNOUNCE
@ -36,6 +36,8 @@ Version 1.6.11beta02 [March 22, 2014]
|
|||||||
they were handled improperly by Portland Group's PGI-14.1 - PGI-14.3
|
they were handled improperly by Portland Group's PGI-14.1 - PGI-14.3
|
||||||
when using its "__builtin_pow()" function.
|
when using its "__builtin_pow()" function.
|
||||||
Silence 'unused parameter' build warnings (Cosmin).
|
Silence 'unused parameter' build warnings (Cosmin).
|
||||||
|
$(CP) is now used alongside $(RM_F). Also, use 'copy' instead
|
||||||
|
of 'cp' where applicable, and applied other minor makefile changes.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
2
CHANGES
2
CHANGES
@ -4885,6 +4885,8 @@ Version 1.6.11beta02 [March 22, 2014]
|
|||||||
they were handled improperly by Portland Group's PGI-14.1 - PGI-14.3
|
they were handled improperly by Portland Group's PGI-14.1 - PGI-14.3
|
||||||
when using its "__builtin_pow()" function.
|
when using its "__builtin_pow()" function.
|
||||||
Silence 'unused parameter' build warnings (Cosmin).
|
Silence 'unused parameter' build warnings (Cosmin).
|
||||||
|
$(CP) is now used alongside $(RM_F). Also, use 'copy' instead
|
||||||
|
of 'cp' where applicable, and applied other minor makefile changes.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Makefiles for libpng version 1.6.11beta02 - March 17, 2014
|
Makefiles for libpng version 1.6.11beta02 - March 22, 2014
|
||||||
|
|
||||||
pnglibconf.h.prebuilt => Stores configuration settings
|
pnglibconf.h.prebuilt => Stores configuration settings
|
||||||
makefile.linux => Linux/ELF makefile
|
makefile.linux => Linux/ELF makefile
|
||||||
|
@ -45,7 +45,7 @@ $(LBR): $(OBJS)
|
|||||||
$(OBJS): pngpriv.h png.h pngconf.h pnglibconf.h pnginfo.h pngstruct.h pngdebug.h
|
$(OBJS): pngpriv.h png.h pngconf.h pnglibconf.h pnginfo.h pngstruct.h pngdebug.h
|
||||||
|
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt pnglibconf.h
|
cp $< $@
|
||||||
|
|
||||||
pngtest.ttp: pngtest.o $(LBR)
|
pngtest.ttp: pngtest.o $(LBR)
|
||||||
$(CC) $(CFLAGS) $(LDFLAGS) -o$@ pngtest.o
|
$(CC) $(CFLAGS) $(LDFLAGS) -o$@ pngtest.o
|
||||||
|
@ -11,10 +11,11 @@
|
|||||||
## Where zlib.h, zconf.h and zlib.lib are
|
## Where zlib.h, zconf.h and zlib.lib are
|
||||||
ZLIB_DIR=..\zlib
|
ZLIB_DIR=..\zlib
|
||||||
|
|
||||||
## Compiler, linker and lib stuff
|
## Compiler, linker, librarian and other tools
|
||||||
CC=bcc32
|
CC=bcc32
|
||||||
LD=bcc32
|
LD=bcc32
|
||||||
LIB=tlib
|
LIB=tlib
|
||||||
|
CP=copy
|
||||||
|
|
||||||
# -3 = 386, -4 = 486, -5 = Pentium etc.
|
# -3 = 386, -4 = 486, -5 = Pentium etc.
|
||||||
!ifndef TARGET_CPU
|
!ifndef TARGET_CPU
|
||||||
@ -114,7 +115,7 @@ test: pngtest.exe
|
|||||||
# see scripts\pnglibconf.mak for how to make this file
|
# see scripts\pnglibconf.mak for how to make this file
|
||||||
# with different options
|
# with different options
|
||||||
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
||||||
copy scripts\pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
png.obj: png.c png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
png.obj: png.c png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
pngerror.obj: pngerror.c png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngerror.obj: pngerror.c png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
|
@ -24,6 +24,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where the zlib library and include files are located
|
# Where the zlib library and include files are located
|
||||||
@ -83,7 +84,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# try include scripts/pnglibconf.mak for more options
|
# try include scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -12,10 +12,11 @@
|
|||||||
## Where zlib.h, zconf.h and zlib_MODEL.lib are
|
## Where zlib.h, zconf.h and zlib_MODEL.lib are
|
||||||
ZLIB_DIR=..\zlib
|
ZLIB_DIR=..\zlib
|
||||||
|
|
||||||
## Compiler, linker and lib stuff
|
## Compiler, linker, librarian and other tools
|
||||||
CC=bcc
|
CC=bcc
|
||||||
LD=bcc
|
LD=bcc
|
||||||
LIB=tlib
|
LIB=tlib
|
||||||
|
CP=copy
|
||||||
|
|
||||||
!ifndef MODEL
|
!ifndef MODEL
|
||||||
MODEL=l
|
MODEL=l
|
||||||
@ -112,7 +113,7 @@ all: libpng pngtest
|
|||||||
|
|
||||||
# try !inlude scripts\pnglibconf.mak for more options
|
# try !inlude scripts\pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
||||||
copy scripts\pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng: $(LIBNAME)
|
libpng: $(LIBNAME)
|
||||||
|
|
||||||
|
@ -34,6 +34,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
ARCH=-arch ppc -arch i386 -arch x86_64
|
ARCH=-arch ppc -arch i386 -arch x86_64
|
||||||
|
|
||||||
@ -80,7 +81,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -22,6 +22,7 @@ CC=cc
|
|||||||
MKDIR_P=mkdir
|
MKDIR_P=mkdir
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# where make install puts libpng.a and png.h
|
# where make install puts libpng.a and png.h
|
||||||
@ -68,7 +69,7 @@ all: $(LIBSO) libpng.a pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
@ -181,7 +182,7 @@ test-installed:
|
|||||||
./pngtesti pngtest.png
|
./pngtesti pngtest.png
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
/bin/rm -f *.o libpng.a pngtest pngtesti pngout.png \
|
$(RM_F) *.o libpng.a pngtest pngtesti pngout.png \
|
||||||
libpng-config $(LIBSO) $(LIBSOMAJ)* \
|
libpng-config $(LIBSO) $(LIBSOMAJ)* \
|
||||||
libpng.pc pnglibconf.h
|
libpng.pc pnglibconf.h
|
||||||
|
|
||||||
|
@ -19,6 +19,9 @@ LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
|
|||||||
|
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
|
||||||
|
CP=cp
|
||||||
|
RM_F=rm -f
|
||||||
|
|
||||||
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
||||||
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o pngwtran.o \
|
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o pngwtran.o \
|
||||||
pngmem.o pngerror.o pngpread.o
|
pngmem.o pngerror.o pngpread.o
|
||||||
@ -30,7 +33,7 @@ all: libpng.a pngtest
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
ar rc $@ $(OBJS)
|
ar rc $@ $(OBJS)
|
||||||
@ -43,7 +46,7 @@ pngtest: pngtest.o libpng.a
|
|||||||
test: pngtest
|
test: pngtest
|
||||||
./pngtest
|
./pngtest
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o libpng.a pngtest pngout.png pnglibconf.h
|
$(RM_F) *.o libpng.a pngtest pngout.png pnglibconf.h
|
||||||
|
|
||||||
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ CC=gcc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# where "make install" puts libpng16.a, libpng16.so*,
|
# where "make install" puts libpng16.a, libpng16.so*,
|
||||||
@ -100,7 +101,7 @@ all: libpng.a $(LIBSO) pngtest pngtest-static libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -13,7 +13,7 @@ LIB= png
|
|||||||
SHLIB_MAJOR= ${SHLIB_VER}
|
SHLIB_MAJOR= ${SHLIB_VER}
|
||||||
SHLIB_MINOR= 0
|
SHLIB_MINOR= 0
|
||||||
NO_PROFILE= YES
|
NO_PROFILE= YES
|
||||||
NO_OBJ= YES
|
NO_OBJ= YES
|
||||||
|
|
||||||
# where make install puts libpng.a and png.h
|
# where make install puts libpng.a and png.h
|
||||||
DESTDIR= ${PREFIX}
|
DESTDIR= ${PREFIX}
|
||||||
@ -57,7 +57,7 @@ test: pngtest
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
cp $< $@
|
||||||
|
|
||||||
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
|
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
|
||||||
writelock:
|
writelock:
|
||||||
|
@ -16,6 +16,7 @@ CC = gcc
|
|||||||
LD = $(CC)
|
LD = $(CC)
|
||||||
AR_RC = ar rcs
|
AR_RC = ar rcs
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
CP = cp
|
||||||
RM_F = rm -f
|
RM_F = rm -f
|
||||||
|
|
||||||
WARNMORE = -Wwrite-strings -Wpointer-arith -Wshadow \
|
WARNMORE = -Wwrite-strings -Wpointer-arith -Wshadow \
|
||||||
@ -39,7 +40,7 @@ all: static
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
||||||
|
@ -34,6 +34,7 @@ CC=cc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
CPPFLAGS=-I$(ZLIBINC) \
|
CPPFLAGS=-I$(ZLIBINC) \
|
||||||
@ -85,7 +86,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -25,6 +25,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# where "make install" puts libpng.a, $(OLDSO)*, png.h, pngconf.h
|
# where "make install" puts libpng.a, $(OLDSO)*, png.h, pngconf.h
|
||||||
|
@ -84,7 +84,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -21,6 +21,7 @@ ZLIBLIB = ../zlib
|
|||||||
CC = icc
|
CC = icc
|
||||||
LD = ilink
|
LD = ilink
|
||||||
AR = ilib
|
AR = ilib
|
||||||
|
CP = copy
|
||||||
RM = del
|
RM = del
|
||||||
|
|
||||||
CPPFLAGS = -I$(ZLIBINC)
|
CPPFLAGS = -I$(ZLIBINC)
|
||||||
@ -47,7 +48,7 @@ all: libpng$(A) pngtest$(E)
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng$(A): $(OBJS)
|
libpng$(A): $(OBJS)
|
||||||
$(AR) -out:$@ $(OBJS)
|
$(AR) -out:$@ $(OBJS)
|
||||||
|
@ -36,6 +36,7 @@ CPPFLAGS=-I$(ZLIBINC)
|
|||||||
CFLAGS=-O2 -G$(CPU)$(CALLING) -Qip -Qunroll4 -nologo
|
CFLAGS=-O2 -G$(CPU)$(CALLING) -Qip -Qunroll4 -nologo
|
||||||
LD=link
|
LD=link
|
||||||
LDFLAGS=/SUBSYSTEM:CONSOLE /NOLOGO
|
LDFLAGS=/SUBSYSTEM:CONSOLE /NOLOGO
|
||||||
|
CP=cp
|
||||||
|
|
||||||
O=.obj
|
O=.obj
|
||||||
|
|
||||||
@ -47,7 +48,7 @@ all: test
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
$(CC) $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
$(CC) $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
||||||
|
@ -36,6 +36,9 @@ ANSI2KNRFLAGS=
|
|||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
#RANLIB = echo
|
#RANLIB = echo
|
||||||
|
|
||||||
|
CP = cp
|
||||||
|
RM_F = rm -f
|
||||||
|
|
||||||
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
||||||
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
||||||
pngwtran.o pngmem.o pngerror.o pngpread.o
|
pngwtran.o pngmem.o pngerror.o pngpread.o
|
||||||
@ -44,7 +47,7 @@ all: ansi2knr libpng.a pngtest
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
# general rule to allow ansi2knr to work
|
# general rule to allow ansi2knr to work
|
||||||
.c.o:
|
.c.o:
|
||||||
@ -83,7 +86,7 @@ install: libpng.a png.h pngconf.h pnglibconf.h
|
|||||||
chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
|
chmod 644 $(DESTDIR)$(LIBPATH)/libpng.a
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f *.o libpng.a pngtest pngout.png ansi2knr pnglibconf.h
|
$(RM_F) *.o libpng.a pngtest pngout.png ansi2knr pnglibconf.h
|
||||||
|
|
||||||
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
|
DOCS = ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO
|
||||||
writelock:
|
writelock:
|
||||||
|
@ -24,6 +24,7 @@ CC=gcc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# where "make install" puts libpng16.a, libpng16.so*,
|
# where "make install" puts libpng16.a, libpng16.so*,
|
||||||
@ -93,7 +94,7 @@ all: libpng.a $(LIBSO) pngtest pngtest-static libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -30,6 +30,8 @@ LDFLAGS=-L. -L../zlib/ -lpng -lz -lm
|
|||||||
#RANLIB=ranlib
|
#RANLIB=ranlib
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
|
||||||
|
CP=cp
|
||||||
|
|
||||||
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
OBJS = png.o pngset.o pngget.o pngrutil.o pngtrans.o pngwutil.o \
|
||||||
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
pngread.o pngrio.o pngwio.o pngwrite.o pngrtran.o \
|
||||||
pngwtran.o pngmem.o pngerror.o pngpread.o
|
pngwtran.o pngmem.o pngerror.o pngpread.o
|
||||||
@ -41,7 +43,7 @@ all: libpng.a pngtest
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
ar rc $@ $(OBJS)
|
ar rc $@ $(OBJS)
|
||||||
|
@ -16,6 +16,7 @@ CFLAGS=-Oait -Gs -nologo -W3 -A$(MODEL)
|
|||||||
CC=cl
|
CC=cl
|
||||||
LD=link
|
LD=link
|
||||||
LDFLAGS=/e/st:0x1500/noe
|
LDFLAGS=/e/st:0x1500/noe
|
||||||
|
CP=copy
|
||||||
O=.obj
|
O=.obj
|
||||||
|
|
||||||
#uncomment next to put error messages in a file
|
#uncomment next to put error messages in a file
|
||||||
@ -30,10 +31,10 @@ all: libpng.lib
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
||||||
|
|
||||||
pngset$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
pngset$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
||||||
|
@ -37,6 +37,7 @@ CC = gcc
|
|||||||
LD = $(CC)
|
LD = $(CC)
|
||||||
AR_RC = ar rcs
|
AR_RC = ar rcs
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
CP = cp
|
||||||
RM_F = rm -rf
|
RM_F = rm -rf
|
||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
@ -83,7 +84,7 @@ all: static shared
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
.c.o:
|
.c.o:
|
||||||
$(CC) -c $(CPPFLAGS) $(CFLAGS) $<
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) $<
|
||||||
|
@ -39,7 +39,7 @@ CLEANFILES+=pngtest.o pngtest pnglibconf.h
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
cp $< $@
|
||||||
|
|
||||||
pngtest.o: pngtest.c
|
pngtest.o: pngtest.c
|
||||||
${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
||||||
|
@ -39,7 +39,7 @@ CLEANFILES+=pngtest.o pngtest pnglibconf.h
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
cp $< $@
|
||||||
|
|
||||||
pngtest.o: pngtest.c
|
pngtest.o: pngtest.c
|
||||||
${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
${CC} -c ${CPPFLAGS} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
|
||||||
|
@ -36,7 +36,7 @@ DOCS= ANNOUNCE CHANGES INSTALL KNOWNBUG LICENSE README TODO Y2KINFO \
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
cp $< $@
|
||||||
|
|
||||||
pngtest.o: pngtest.c
|
pngtest.o: pngtest.c
|
||||||
${CC} ${CPPFLAGS} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
${CC} ${CPPFLAGS} ${CFLAGS} -c ${.ALLSRC} -o ${.TARGET}
|
||||||
|
@ -25,6 +25,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir
|
MKDIR_P=mkdir
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# where make install puts libpng.a, $(OLDSO)*, and png.h
|
# where make install puts libpng.a, $(OLDSO)*, and png.h
|
||||||
@ -79,7 +80,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -22,6 +22,7 @@ CC=gcc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where make install puts libpng.a, libpng16.so, and libpng16/png.h
|
# Where make install puts libpng.a, libpng16.so, and libpng16/png.h
|
||||||
@ -82,7 +83,7 @@ all: libpng.a pngtest shared libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -22,6 +22,7 @@ CC=cc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -sf
|
LN_SF=ln -sf
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where make install puts libpng.a, libpng16.so, and libpng16/png.h
|
# Where make install puts libpng.a, libpng16.so, and libpng16/png.h
|
||||||
@ -85,7 +86,7 @@ all: libpng.a pngtest shared libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -26,6 +26,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where make install puts libpng.a, $(OLDSO)*, and png.h
|
# Where make install puts libpng.a, $(OLDSO)*, and png.h
|
||||||
@ -89,7 +90,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -24,6 +24,7 @@ CC=gcc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where make install puts libpng.a, libpng16.so*, and png.h
|
# Where make install puts libpng.a, libpng16.so*, and png.h
|
||||||
@ -85,7 +86,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -24,6 +24,7 @@ CC=gcc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=echo
|
RANLIB=echo
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
# Where make install puts libpng.a, libpng16.so*, and png.h
|
# Where make install puts libpng.a, libpng16.so*, and png.h
|
||||||
@ -84,7 +85,7 @@ all: libpng.a $(LIBSO) pngtest libpng.pc libpng-config
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -32,6 +32,7 @@ AR_RC = ar rc
|
|||||||
MKDIR_P = mkdir
|
MKDIR_P = mkdir
|
||||||
LN_SF = ln -sf
|
LN_SF = ln -sf
|
||||||
RANLIB = ranlib
|
RANLIB = ranlib
|
||||||
|
CP = cp
|
||||||
RM_F = rm -f
|
RM_F = rm -f
|
||||||
AWK = awk
|
AWK = awk
|
||||||
SED = sed
|
SED = sed
|
||||||
|
@ -37,6 +37,7 @@ AR_RC=ar rc
|
|||||||
MKDIR_P=mkdir -p
|
MKDIR_P=mkdir -p
|
||||||
LN_SF=ln -f -s
|
LN_SF=ln -f -s
|
||||||
RANLIB=ranlib
|
RANLIB=ranlib
|
||||||
|
CP=cp
|
||||||
RM_F=/bin/rm -f
|
RM_F=/bin/rm -f
|
||||||
|
|
||||||
CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5
|
CPPFLAGS=-I$(ZLIBINC) # -DPNG_DEBUG=5
|
||||||
@ -54,7 +55,7 @@ all: libpng.a pngtest
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
libpng.a: $(OBJS)
|
libpng.a: $(OBJS)
|
||||||
$(AR_RC) $@ $(OBJS)
|
$(AR_RC) $@ $(OBJS)
|
||||||
|
@ -12,6 +12,8 @@ CC=tcc
|
|||||||
LD=tcc
|
LD=tcc
|
||||||
LIB=tlib
|
LIB=tlib
|
||||||
LDFLAGS=-m$(MODEL) -L..\zlib
|
LDFLAGS=-m$(MODEL) -L..\zlib
|
||||||
|
CP=copy
|
||||||
|
|
||||||
O=.obj
|
O=.obj
|
||||||
E=.exe
|
E=.exe
|
||||||
|
|
||||||
@ -27,7 +29,7 @@ all: libpng$(MODEL).lib pngtest$(E)
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
pnglibconf.h: scripts/pnglibconf.h.prebuilt
|
||||||
cp scripts/pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
pngtest: pngtest$(E)
|
pngtest: pngtest$(E)
|
||||||
|
|
||||||
|
@ -9,9 +9,9 @@
|
|||||||
# Assumes that zlib.lib, zconf.h, and zlib.h have been copied to ..\zlib
|
# Assumes that zlib.lib, zconf.h, and zlib.h have been copied to ..\zlib
|
||||||
# To use, do "nmake /f scripts\makefile.vcwin32"
|
# To use, do "nmake /f scripts\makefile.vcwin32"
|
||||||
|
|
||||||
# -------- Microsoft Visual C++ 2.0 and later, no assembler code --------
|
# -------- Microsoft Visual C++ 2.0 and later --------
|
||||||
|
|
||||||
# Compiler, linker, librarian, and other tools
|
# Compiler, linker, librarian and other tools
|
||||||
CC = cl
|
CC = cl
|
||||||
LD = link
|
LD = link
|
||||||
AR = lib
|
AR = lib
|
||||||
@ -19,6 +19,7 @@ CPPFLAGS = -I..\zlib
|
|||||||
CFLAGS = -nologo -D_CRT_SECURE_NO_DEPRECATE -MD -O2 -W3
|
CFLAGS = -nologo -D_CRT_SECURE_NO_DEPRECATE -MD -O2 -W3
|
||||||
LDFLAGS = -nologo
|
LDFLAGS = -nologo
|
||||||
ARFLAGS = -nologo
|
ARFLAGS = -nologo
|
||||||
|
CP = copy
|
||||||
RM = del
|
RM = del
|
||||||
|
|
||||||
# File extensions
|
# File extensions
|
||||||
@ -38,7 +39,7 @@ all: libpng.lib
|
|||||||
|
|
||||||
# see scripts/pnglibconf.mak for more options
|
# see scripts/pnglibconf.mak for more options
|
||||||
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
pnglibconf.h: scripts\pnglibconf.h.prebuilt
|
||||||
copy scripts\pnglibconf.h.prebuilt $@
|
$(CP) $< $@
|
||||||
|
|
||||||
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
png$(O): png.h pngconf.h pnglibconf.h pngpriv.h pngstruct.h pnginfo.h pngdebug.h
|
||||||
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) $*.c $(ERRFILE)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
/* pnglibconf.h - library build configuration */
|
/* pnglibconf.h - library build configuration */
|
||||||
|
|
||||||
/* Libpng version 1.6.11beta02 - March 17, 2014 */
|
/* Libpng version 1.6.11beta02 - March 22, 2014 */
|
||||||
|
|
||||||
/* Copyright (c) 1998-2013 Glenn Randers-Pehrson */
|
/* Copyright (c) 1998-2013 Glenn Randers-Pehrson */
|
||||||
|
|
||||||
|
@ -11,11 +11,17 @@
|
|||||||
|
|
||||||
/* NOTE: making 'symbols.chk' checks both that the exported
|
/* NOTE: making 'symbols.chk' checks both that the exported
|
||||||
* symbols in the library don't change and (implicitly) that
|
* symbols in the library don't change and (implicitly) that
|
||||||
* scripts/pnglibconf.h.prebuilt is as expected. If scripts/pnglibconf.h.prebuilt
|
* scripts/pnglibconf.h.prebuilt is as expected.
|
||||||
* is remade using scripts/pnglibconf.dfa then this checks the
|
* If scripts/pnglibconf.h.prebuilt is remade using
|
||||||
* .dfa file too.
|
* scripts/pnglibconf.dfa then this checks the .dfa file too.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define PNG_EXPORTA(ordinal, type, name, args, attributes)\
|
||||||
|
PNG_DFN "@" name "@ @@" ordinal "@"
|
||||||
|
#define PNG_REMOVED(ordinal, type, name, args, attributes)\
|
||||||
|
PNG_DFN "; @" name "@ @@" ordinal "@"
|
||||||
|
#define PNG_EXPORT_LAST_ORDINAL(ordinal)\
|
||||||
|
|
||||||
#define PNG_EXPORTA(ordinal, type, name, args, attributes)\
|
#define PNG_EXPORTA(ordinal, type, name, args, attributes)\
|
||||||
PNG_DFN "@" name "@ @@" ordinal "@"
|
PNG_DFN "@" name "@ @@" ordinal "@"
|
||||||
#define PNG_REMOVED(ordinal, type, name, args, attributes)\
|
#define PNG_REMOVED(ordinal, type, name, args, attributes)\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user