18 lines
208 B
Makefile
18 lines
208 B
Makefile
CC = gcc
|
|
CFLAGS = -g -Wall
|
|
SRC = ../lexer.c ../token.c
|
|
|
|
all = test_all
|
|
|
|
test_all: test
|
|
./test
|
|
|
|
run:
|
|
$(CC) $(CFLAGS) $(SRC) run.c -o run
|
|
|
|
test:
|
|
$(CC) $(CFLAGS) $(SRC) -o test test.c
|
|
|
|
clean:
|
|
rm -f test run
|