aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7fcb26c..f81b589 100644
--- a/Makefile
+++ b/Makefile
@@ -3,5 +3,10 @@ CC = gcc -m32
CFLAGS = -Wall -Wextra -Wno-strict-aliasing -I. -ggdb -fno-builtin
all:
+ $(CC) $(CFLAGS) -c shelpers.c
$(CC) $(CFLAGS) -c parser.c
- $(CC) $(CFLAGS) shell.c parser.o -o shell
+ $(CC) $(CFLAGS) -c builtins.c
+ $(CC) $(CFLAGS) -c stack.c
+ $(CC) $(CFLAGS) -c ops.c
+ $(CC) $(CFLAGS) -c variable.c
+ $(CC) $(CFLAGS) shell.c *.o -o shell