aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 762ebfa..5f44fee 100644
--- a/Makefile
+++ b/Makefile
@@ -9,6 +9,9 @@ demo:
run:
hare run $(LIBS) cmd/demo
+clean:
+ rm -rf docs demo
+
docs:
mkdir -p docs/sdl2/image
haredoc -Fhtml sdl2 > docs/sdl2/index.html
@@ -16,4 +19,4 @@ docs:
mkdir -p docs/sdl2/mixer
haredoc -Fhtml sdl2::mixer > docs/sdl2/mixer/index.html
-.PHONY: demo docs run
+.PHONY: clean demo docs run