Skip to content

Commit 529eae2

Browse files
committed
Add 'clean' to makefile
1 parent d88f385 commit 529eae2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Makefile

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ TARGETPATH := /afs/umbc.edu/public/www/lug/
1414
all: generate $(SCRIPT) $(STYLESHEET) $(FONTS)
1515
tar: lug.umbc.edu.tar
1616

17-
.PHONY: all tar get-deps generate deploy
17+
.PHONY: all tar get-deps generate deploy clean reallyclean
1818

1919
get-deps:
2020
bower install mui
@@ -41,3 +41,9 @@ $(SCRIPT): style.js
4141

4242
$(STYLESHEET): stylesheets/main.scss
4343
scss $^ > $(STYLESHEET)
44+
45+
clean:
46+
rm -rf $(OUTPUT) .sass-cache
47+
48+
reallyclean: clean
49+
rm -rf bower_components

0 commit comments

Comments
 (0)