aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamil Staps2016-08-27 08:53:56 +0200
committerCamil Staps2016-08-27 08:53:56 +0200
commitce17a386f6c9047f8e7251de3a9e9cf3c10996e0 (patch)
treec3124eafcd35865626af8644f64a81d648461eed
parentAdd examples to doc (diff)
fuspelc -> fuspel
-rw-r--r--interpreter/.gitignore2
-rw-r--r--interpreter/Makefile4
-rw-r--r--interpreter/fuspel.c (renamed from interpreter/fuspelc.c)0
3 files changed, 3 insertions, 3 deletions
diff --git a/interpreter/.gitignore b/interpreter/.gitignore
index 9148247..ea6faae 100644
--- a/interpreter/.gitignore
+++ b/interpreter/.gitignore
@@ -1,2 +1,2 @@
*.o
-fuspelc
+fuspel
diff --git a/interpreter/Makefile b/interpreter/Makefile
index 25c28ee..dd22bf8 100644
--- a/interpreter/Makefile
+++ b/interpreter/Makefile
@@ -1,8 +1,8 @@
CFLAGS=-Wall -Wextra -Werror -s
DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h
-OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o
-EXE=fuspelc
+OBJ=fuspel.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o
+EXE=fuspel
.PHONY: all clean
diff --git a/interpreter/fuspelc.c b/interpreter/fuspel.c
index 0e1d82b..0e1d82b 100644
--- a/interpreter/fuspelc.c
+++ b/interpreter/fuspel.c