summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 02cac6f..dd9c016 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-CC = clang
CFLAGS = -Wall -Wextra -std=c99 -pedantic -O3
LDFLAGS = -lm
OBJECTS = mjolnir.o
@@ -12,8 +11,7 @@ install: release
cp $(TARGET) $(PREFIX)/$(TARGET)
chmod 755 $(PREFIX)/$(TARGET)
+uninstall:
+ rm $(PREFIX)/$(TARGET)
clean:
- rm -f *.o *~ core tags $(TARGET)
-
-tags:
- ctags *
+ rm -f *.o $(TARGET)