2012-05-21 04:12:37 -07: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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-02-17 22:56:32 -08:00
|
|
|
ifdef GNU_CC
|
|
|
|
OS_CFLAGS := $(OS_CFLAGS) -Wshadow
|
|
|
|
OS_CXXFLAGS := $(OS_CXXFLAGS) -Wshadow
|
|
|
|
endif
|
|
|
|
|
2013-09-03 20:28:05 -07:00
|
|
|
INSTALL_TARGETS += structlist
|
|
|
|
structlist_FILES := nsStyleStructList.h
|
|
|
|
structlist_DEST = $(DIST)/include
|
|
|
|
structlist_TARGET := export
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2012-07-31 10:28:21 -07:00
|
|
|
|
|
|
|
LOCAL_INCLUDES += \
|
2010-06-18 09:23:05 -07:00
|
|
|
-I$(srcdir)/../base \
|
2012-11-24 16:26:07 -08:00
|
|
|
-I$(topsrcdir)/dom/base \
|
2010-06-18 09:23:05 -07:00
|
|
|
-I$(srcdir)/../generic \
|
|
|
|
-I$(srcdir)/../xul/base/src \
|
2007-03-22 10:30:00 -07:00
|
|
|
-I$(srcdir)/../../content/base/src \
|
|
|
|
-I$(srcdir)/../../content/html/content/src \
|
|
|
|
-I$(srcdir)/../../content/xbl/src \
|
|
|
|
-I$(srcdir)/../../content/xul/document/src \
|
|
|
|
$(NULL)
|
|
|
|
|
2013-07-15 21:32:25 -07:00
|
|
|
nsStyleStructList.h : $(srcdir)/generate-stylestructlist.py
|
|
|
|
$(PYTHON) $< > $@
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
_FILES = \
|
2007-06-27 19:48:16 -07:00
|
|
|
contenteditable.css \
|
|
|
|
designmode.css \
|
2013-04-21 15:29:14 -07:00
|
|
|
ImageDocument.css \
|
2011-11-10 15:08:07 -08:00
|
|
|
TopLevelImageDocument.css \
|
|
|
|
TopLevelVideoDocument.css \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2013-07-15 21:32:25 -07:00
|
|
|
GARBAGE += \
|
|
|
|
$(addprefix $(DIST)/bin/res/,$(_FILES)) \
|
|
|
|
nsStyleStructList.h \
|
|
|
|
$(NULL)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
libs:: $(_FILES)
|
|
|
|
$(INSTALL) $^ $(DIST)/bin/res
|