summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 10e7c66..d940580 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,11 @@ OBJECTS=$(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(SOURCES))
BIN=main
+run: $(BIN)
+ ./$(BIN)
+
+build: $(BIN)
+
$(BIN): $(OBJECTS)
$(CC) $(OBJECTS) -o $(BIN)