diff options
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,11 @@ OBJECTS=$(patsubst $(SRC)/%.c, $(OBJ)/%.o, $(SOURCES)) BIN=main +run: $(BIN) + ./$(BIN) + +build: $(BIN) + $(BIN): $(OBJECTS) $(CC) $(OBJECTS) -o $(BIN) |