mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOZILLA_INTERNAL_API =1
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
ifdef MOZ_DEBUG
|
|
CSRCS += pure_api.c
|
|
endif
|
|
|
|
endif #if OS_ARCH == WINNT
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
ifdef MOZ_WIDGET_GTK
|
|
CXXFLAGS += $(TK_CFLAGS)
|
|
endif
|
|
|
|
LOCAL_INCLUDES += \
|
|
-I$(srcdir)/../build \
|
|
-I$(topsrcdir)/xpcom/ds \
|
|
$(NULL)
|
|
|
|
# We generate ErrorListCxxDefines.h from ErrorList.h using regex. The -n option
|
|
# 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.
|
|
ErrorListCxxDefines.h: ErrorList.h Makefile
|
|
echo '// IWYU pragma: private, include "nsError.h"' > $@
|
|
sed -n 's/.*ERROR(\([A-Z_0-9]*\).*/#define \1 nsresult::\1/p' < $< >> $@
|
|
|
|
ErrorListCDefines.h: ErrorList.h Makefile
|
|
sed 's/.*ERROR(\([A-Z_0-9]*\),\( *\)\(.*\))[^)]*/#define \1 \2((nsresult)(\3))/' < $< > $@
|
|
|
|
GARBAGE += \
|
|
ErrorListCxxDefines.h \
|
|
ErrorListCDefines.h \
|
|
$(NULL)
|