blob: d0037226e8ad9d93a40ce59e04408e83b03675e7 (
plain) (
blame)
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
|
.POSIX:
MAKEFLAGS = -j8
S = src
P = $(DESTDIR)$(PREFIX)
PREFIX = /usr/local
CFLAGS = -O3 -march=native -mtune=native -pipe -Wall -Wextra -Wpedantic
target = pinocchio
objs = $S/lexer.o $S/main.o $S/parser.o $S/wrapper.o
all: $(target)
$(target): $(objs)
$(CC) $(CFLAGS) -o $@ $(objs)
$S/lexer.o: $S/lexer.c $S/lexer.h $S/parser.h
$S/main.o: $S/main.c $S/lexer.h $S/parser.h $S/pinocchio.h $S/wrapper.h
$S/parser.o: $S/parser.c $S/lexer.h $S/parser.h $S/pinocchio.h $S/wrapper.h
$S/lexer.c $S/lexer.h: $S/lexer.l
flex --warn --header-file=$S/lexer.h -o $S/lexer.c $<
$S/parser.c $S/parser.h: $S/parser.y
bison -Wall -Wcounterexamples -dvo $S/parser.c $<
clean:
rm -f $$(git ls-files -oi --exclude-standard)
install:
mkdir -p $P/bin
cp $(target) $P/bin
|