interpreter/Makefile

8 lines
160 B
Makefile
Raw Normal View History

2018-01-23 08:17:07 -05:00
CC = gcc -m32
2018-02-05 11:28:24 -05:00
CFLAGS = -Wall -Wextra -Wno-strict-aliasing -I. -ggdb -fno-builtin
2018-01-23 08:17:07 -05:00
all:
$(CC) $(CFLAGS) -c parser.c
$(CC) $(CFLAGS) shell.c parser.o -o shell