1998-08-20 00:42:14 +04:00
|
|
|
#
|
2005-12-31 19:02:07 +03:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
2005-12-31 19:02:07 +03:00
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
1998-08-20 00:42:14 +04:00
|
|
|
#
|
1999-11-06 06:43:54 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2005-12-31 19:02:07 +03:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 06:43:54 +03:00
|
|
|
#
|
2005-12-31 19:02:07 +03:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-09-14 06:51:42 +04:00
|
|
|
#
|
2005-12-31 19:02:07 +03:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1998-08-20 00:42:14 +04:00
|
|
|
|
2011-10-18 08:25:53 +04:00
|
|
|
DEPTH = ../..
|
1998-08-20 00:42:14 +04:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
1999-09-14 06:51:42 +04:00
|
|
|
VPATH = @srcdir@
|
1998-08-20 00:42:14 +04:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = png
|
2001-03-10 02:53:17 +03:00
|
|
|
LIBRARY_NAME = mozpng
|
2002-01-16 08:10:09 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
LIBRARY_NAME = png
|
|
|
|
endif
|
2004-12-09 22:28:35 +03:00
|
|
|
LIBXUL_LIBRARY = 1
|
2002-01-16 08:10:09 +03:00
|
|
|
|
1999-09-14 06:51:42 +04:00
|
|
|
|
|
|
|
CSRCS = \
|
|
|
|
png.c \
|
|
|
|
pngerror.c \
|
|
|
|
pngget.c \
|
|
|
|
pngmem.c \
|
2007-11-13 14:03:32 +03:00
|
|
|
pngset.c \
|
|
|
|
pngtrans.c \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-03-04 07:18:12 +04:00
|
|
|
# These files enable support for reading/writing PNGs
|
2007-11-13 14:03:32 +03:00
|
|
|
CSRCS += \
|
1999-09-14 06:51:42 +04:00
|
|
|
pngpread.c \
|
|
|
|
pngread.c \
|
|
|
|
pngrio.c \
|
2009-03-15 13:55:00 +03:00
|
|
|
pngrtran.c \
|
1999-09-14 06:51:42 +04:00
|
|
|
pngrutil.c \
|
|
|
|
pngwio.c \
|
|
|
|
pngwrite.c \
|
|
|
|
pngwtran.c \
|
|
|
|
pngwutil.c \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-11-05 20:23:05 +03:00
|
|
|
DEFINES += -DMOZ_PNG_READ \
|
|
|
|
-DMOZ_PNG_WRITE
|
2007-11-13 14:03:32 +03:00
|
|
|
|
2003-06-12 00:05:13 +04:00
|
|
|
EXPORTS = png.h pngconf.h mozpngconf.h
|
1999-09-14 06:51:42 +04:00
|
|
|
|
|
|
|
LOCAL_INCLUDES = -I$(srcdir)
|
1998-08-26 08:04:57 +04:00
|
|
|
|
2001-06-19 02:10:38 +04:00
|
|
|
FORCE_STATIC_LIB = 1
|
1999-05-17 23:20:28 +04:00
|
|
|
|
1998-08-20 00:42:14 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-09-14 06:51:42 +04:00
|
|
|
|
2001-12-18 12:14:29 +03:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
DEFINES += -DZLIB_DLL
|
|
|
|
ifdef BUILD_DEBUG_GC
|
|
|
|
DEFINES += -DDEBUG_GC
|
|
|
|
endif
|
|
|
|
endif
|