Skip to content

Commit

Permalink
Move LESS files out of css to less directory
Browse files Browse the repository at this point in the history
  • Loading branch information
thebaer committed Jan 5, 2018
1 parent b077f42 commit c001ce6
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 23 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 4 additions & 2 deletions static/css/makefile → less/makefile
Expand Up @@ -5,8 +5,10 @@ else
endif
export LESSC

CSSDIR=../static/css/

all :
$(LESSC) app.less --clean-css="--s1 --advanced --compatibility=ie8" house.css
$(LESSC) app.less --clean-css="--s1 --advanced --compatibility=ie8" $(CSSDIR)house.css

local : all

Expand All @@ -18,4 +20,4 @@ install :
./less.install

clean :
rm -f house.css
rm -f $(CSSDIR)house.css
8 changes: 4 additions & 4 deletions makefile
Expand Up @@ -3,16 +3,16 @@ all : local

install :
./keys.sh gen
cd static/; $(MAKE) install $(MFLAGS)
cd less/; $(MAKE) install $(MFLAGS)

local : force_look
cd static/; $(MAKE) $(MFLAGS)
cd less/; $(MAKE) $(MFLAGS)

development : force_look
cd static/; $(MAKE) development $(MFLAGS)
cd less/; $(MAKE) development $(MFLAGS)

production : force_look
cd static/; $(MAKE) production $(MFLAGS)
cd less/; $(MAKE) production $(MFLAGS)
./build.sh

hidden : production
Expand Down
17 changes: 0 additions & 17 deletions static/makefile

This file was deleted.

0 comments on commit c001ce6

Please sign in to comment.