-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
53 lines (36 loc) · 1.24 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FLEX = /usr/bin/flex
CC := /usr/bin/gcc
CFLAGS := $(CFLAGS) -Wextra
lang: main.o parser.o scanner.o compiler.o debug.o emit.o ast.o lut.o
$(CC) -o lang main.o parser.o scanner.o compiler.o debug.o emit.o ast.o lut.o
color: color.o scanner.o compiler.o debug.o
$(CC) -o color color.o scanner.o compiler.o debug.o
color.o: color.c parser.h scanner.h lang.h
main.o: main.c parser.h scanner.h lang.h emit.c
compiler.o: compiler.c compiler.h parser.h scanner.h lang.h
parser.o: parser.h parser.c lang.h
scanner.o: scanner.h
debug.o: debug.c compiler.h parser.h scanner.h lang.h
emit.o: emit.c lang.h debug.h compiler.o lut.o debug.o
ast.o: ast.c ast.h
lut.o: lut.c lut.h
# Parser
parser.h parser.c: parser.y lemon
./lemon parser.y
# Lexer
scanner.c scanner.h: scanner.l
$(FLEX) scanner.l
lemon: lemon.c
$(CC) -o lemon lemon.c
format:
clang-format -i color.c compiler.c debug.c emit.c main.c
clang-format -i debug.h emit.h lang.h compiler.h
check: parser.o scanner.o compiler.o debug.o emit.o ast.o lut.o
$(CC) -o test/run test/test.c parser.o scanner.o compiler.o debug.o emit.o ast.o lut.o `pkg-config --cflags --libs check`
./test/run
.PHONY: clean
clean:
rm -f *.o
rm -f scanner.c scanner.h
rm -f parser.c parser.h parser.out
rm -f lang lemon