mirror of https://github.com/saimn/sigal.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
352 B
13 lines
352 B
|
12 years ago
|
COLORBOX_PATH=sigal/themes/colorbox/static/css
|
||
|
|
GALLERIA_PATH=sigal/themes/galleria/static/css
|
||
|
|
|
||
|
|
all: colorbox galleria
|
||
|
|
|
||
|
|
colorbox:
|
||
|
|
cat $(COLORBOX_PATH)/{base,skeleton,colorbox,style}.css | cssmin > $(COLORBOX_PATH)/style.min.css
|
||
|
|
|
||
|
|
galleria:
|
||
|
|
cat $(GALLERIA_PATH)/{normalize,style}.css | cssmin > $(GALLERIA_PATH)/style.min.css
|
||
|
|
|
||
|
|
.PHONY: colorbox galleria
|