Skip to content

Commit c001ce6

Browse files
committed
Move LESS files out of css to less directory
1 parent b077f42 commit c001ce6

File tree

7 files changed

+8
-23
lines changed

7 files changed

+8
-23
lines changed

Diff for: static/css/app.less renamed to less/app.less

File renamed without changes.

Diff for: static/css/core.less renamed to less/core.less

File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: static/css/makefile renamed to less/makefile

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,10 @@ else
55
endif
66
export LESSC
77

8+
CSSDIR=../static/css/
9+
810
all :
9-
$(LESSC) app.less --clean-css="--s1 --advanced --compatibility=ie8" house.css
11+
$(LESSC) app.less --clean-css="--s1 --advanced --compatibility=ie8" $(CSSDIR)house.css
1012

1113
local : all
1214

@@ -18,4 +20,4 @@ install :
1820
./less.install
1921

2022
clean :
21-
rm -f house.css
23+
rm -f $(CSSDIR)house.css

Diff for: makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ all : local
33

44
install :
55
./keys.sh gen
6-
cd static/; $(MAKE) install $(MFLAGS)
6+
cd less/; $(MAKE) install $(MFLAGS)
77

88
local : force_look
9-
cd static/; $(MAKE) $(MFLAGS)
9+
cd less/; $(MAKE) $(MFLAGS)
1010

1111
development : force_look
12-
cd static/; $(MAKE) development $(MFLAGS)
12+
cd less/; $(MAKE) development $(MFLAGS)
1313

1414
production : force_look
15-
cd static/; $(MAKE) production $(MFLAGS)
15+
cd less/; $(MAKE) production $(MFLAGS)
1616
./build.sh
1717

1818
hidden : production

Diff for: static/makefile

-17
This file was deleted.

0 commit comments

Comments
 (0)