summaryrefslogtreecommitdiff
path: root/src/parse/properties
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-02-03 14:27:30 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-02-03 14:27:30 +0000
commit67b7f7f3ff4cff5a20d23110e773a69b4c0570e1 (patch)
tree167aa3c606f8ce7b2b95ae3275a4056cb6a85560 /src/parse/properties
parentbd8ef0f5e2ec383b528b825eba4724b90643cbef (diff)
downloadlibcss-67b7f7f3ff4cff5a20d23110e773a69b4c0570e1.tar.gz
libcss-67b7f7f3ff4cff5a20d23110e773a69b4c0570e1.tar.bz2
Remove out-of-sync sources comment. Make source list clearer and sort it.
svn path=/trunk/libcss/; revision=13417
Diffstat (limited to 'src/parse/properties')
-rw-r--r--src/parse/properties/Makefile59
1 files changed, 32 insertions, 27 deletions
diff --git a/src/parse/properties/Makefile b/src/parse/properties/Makefile
index 4aba48a..ebf4de3 100644
--- a/src/parse/properties/Makefile
+++ b/src/parse/properties/Makefile
@@ -1,23 +1,4 @@
# Sources
-# background.c
-# border.c
-# border_color.c
-# border_style.c
-# border_width.c
-# content.c
-# cue.c
-# cursor.c
-# font.c
-# font_family.c
-# list_style.c
-# margin.c
-# outline.c
-# padding.c
-# pause.c
-# play_during.c
-# quotes.c
-# text_decoration.c
-# voice_family.c
AUTOGEN_PARSERS := $(shell $(PERL) -pe'$$_="" unless /^([^\#][^:]+):/;$$_=$$1 . " "' $(DIR)properties.gen)
@@ -48,14 +29,38 @@ $(eval $(foreach PROP,$(AUTOGEN_PARSERS),$(call gen_prop_parser,$(PROP))))
-DIR_SOURCES := azimuth.c text_decoration.c background.c \
- background_position.c border_spacing.c font.c outline.c \
- voice_family.c border_style.c cue.c \
- font_family.c list_style.c padding.c cursor.c \
- list_style_type.c pause.c border.c border_width.c margin.c \
- play_during.c clip.c properties.c border_color.c content.c \
- elevation.c font_weight.c quotes.c utils.c opacity.c columns.c \
- column_rule.c
+DIR_SOURCES := \
+ azimuth.c \
+ background.c \
+ background_position.c \
+ border.c \
+ border_color.c \
+ border_spacing.c \
+ border_style.c \
+ border_width.c \
+ clip.c \
+ columns.c \
+ column_rule.c \
+ content.c \
+ cue.c \
+ cursor.c \
+ elevation.c \
+ font.c \
+ font_family.c \
+ font_weight.c \
+ list_style.c \
+ list_style_type.c \
+ margin.c \
+ opacity.c \
+ outline.c \
+ padding.c \
+ pause.c \
+ play_during.c \
+ properties.c \
+ quotes.c \
+ text_decoration.c \
+ utils.c \
+ voice_family.c
DIR_SOURCES := $(DIR_SOURCES) $(AUTOGEN_SOURCES)