projects
/
platform
/
framework
/
web
/
web-ui-fw.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Popup: popup background image have been added
[platform/framework/web/web-ui-fw.git]
/
src
/
themes
/
Makefile
1
THEMES = tizen/tizen-*
2
export THEME_OUTPUT_ROOT ?= ../build/
3
4
all: themes defaulttheme
5
6
themes:
7
# Make themes...
8
@for theme in ${THEMES}; do \
9
make -C $$theme || exit $?; \
10
done
11
12
defaulttheme: themes
13
ln -sf tizen-white ${THEME_OUTPUT_ROOT}/tizen-tizen
14
15
clean:
16
# Clean themes...
17
@for theme in ${THEMES}; do \
18
make -C $$theme clean; \
19
done
20