1999-05-18 13:11:01 +04:00
|
|
|
#
|
2012-05-21 15:12:37 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
1999-05-18 13:11:01 +04:00
|
|
|
|
2005-04-01 22:22:57 +04:00
|
|
|
MOZILLA_INTERNAL_API =1
|
2002-02-26 02:20:01 +03:00
|
|
|
|
2013-09-04 07:28:05 +04:00
|
|
|
INSTALL_TARGETS += errorlist
|
|
|
|
errorlist_FILES := \
|
|
|
|
ErrorListCDefines.h \
|
|
|
|
ErrorListCxxDefines.h \
|
|
|
|
$(NULL)
|
|
|
|
errorlist_DEST = $(DIST)/include
|
|
|
|
errorlist_TARGET := export
|
|
|
|
|
2008-03-05 14:10:35 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2013-06-10 16:36:26 +04:00
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
|
|
CXXFLAGS += $(TK_CFLAGS)
|
2008-03-14 18:42:34 +03:00
|
|
|
endif
|
|
|
|
|
2011-12-23 05:24:43 +04:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(srcdir)/../build \
|
|
|
|
-I$(topsrcdir)/xpcom/ds \
|
|
|
|
$(NULL)
|
2012-08-02 12:55:58 +04:00
|
|
|
|
2013-01-05 07:55:22 +04:00
|
|
|
# We generate ErrorListCxxDefines.h from ErrorList.h using regex. The -n option
|
2012-08-02 12:55:58 +04:00
|
|
|
# suppresses printing the pattern space, and the p at the end prints it anyway,
|
|
|
|
# so we don't print lines that don't match the pattern to start with.
|
2013-01-05 07:55:22 +04:00
|
|
|
ErrorListCxxDefines.h: ErrorList.h Makefile
|
2013-08-22 10:31:21 +04:00
|
|
|
echo '// IWYU pragma: private, include "nsError.h"' > $@
|
|
|
|
sed -n 's/.*ERROR(\([A-Z_0-9]*\).*/#define \1 nsresult::\1/p' < $< >> $@
|
2012-08-02 12:55:58 +04:00
|
|
|
|
2013-01-05 07:55:22 +04:00
|
|
|
ErrorListCDefines.h: ErrorList.h Makefile
|
|
|
|
sed 's/.*ERROR(\([A-Z_0-9]*\),\( *\)\(.*\))[^)]*/#define \1 \2((nsresult)(\3))/' < $< > $@
|
|
|
|
|
|
|
|
GARBAGE += \
|
|
|
|
ErrorListCxxDefines.h \
|
|
|
|
ErrorListCDefines.h \
|
|
|
|
$(NULL)
|