11 lines
141 B
Makefile
11 lines
141 B
Makefile
all:
|
|
cd dark; make; cd ..
|
|
cd green; make; cd ..
|
|
cd lilac; make; cd ..
|
|
|
|
clean:
|
|
rm dark/style.css
|
|
rm green/style.css
|
|
rm lilac/style.css
|
|
|