mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-12-17 16:51:40 +00:00
13 lines
177 B
Makefile
13 lines
177 B
Makefile
|
|
|
||
|
|
TARGET=layout.css
|
||
|
|
|
||
|
|
LESS_FILE=layout.less
|
||
|
|
|
||
|
|
$(TARGET): $(LESS_FILE)
|
||
|
|
lessc $(LESS_FILE) > $(TARGET)
|
||
|
|
|
||
|
|
# Makefile dependencies...
|
||
|
|
$(OBJ): Makefile
|
||
|
|
$(TARGET): Makefile
|
||
|
|
|