mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-11-01 11:50:07 +00:00
13 lines
177 B
Makefile
Executable File
13 lines
177 B
Makefile
Executable File
|
|
TARGET=layout.css
|
|
|
|
LESS_FILE=layout.less
|
|
|
|
$(TARGET): $(LESS_FILE)
|
|
lessc $(LESS_FILE) > $(TARGET)
|
|
|
|
# Makefile dependencies...
|
|
$(OBJ): Makefile
|
|
$(TARGET): Makefile
|
|
|