summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3ce0d8c..3f50dee 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@ CC := gcc
LD := $(CC)
SRC := $(wildcard *.c)
OBJ := $(patsubst %.c,%.o,$(patsubst %.cpp,%.o,$(SRC)))
-NAME := restruct
+NAME := golem
CFLAGS := -g -O0 -Wall -Wextra -std=c99 -pedantic
LDFLAGS :=
@@ -22,7 +22,7 @@ clean:
run: $(NAME)
@printf '[run]\n'
- @./$(NAME)
+ @./$(NAME) test
re:
@printf '[re]\n'