diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |