mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-29 10:20:08 +00:00
16 lines
205 B
Makefile
Executable File
16 lines
205 B
Makefile
Executable File
|
|
TARGET=layout.css
|
|
|
|
LESS_FILE=layout.less
|
|
|
|
$(TARGET): $(LESS_FILE)
|
|
lessc $(LESS_FILE) > $(TARGET)
|
|
|
|
clean:
|
|
rm -f $(TARGET)
|
|
|
|
# Makefile dependencies...
|
|
$(OBJ): Makefile
|
|
$(TARGET): Makefile
|
|
|