blob: 3192191e8542ac09b5ac3baa58241d4942fdd8c1 (
about) (
plain)
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
|
CC=gcc
CPP=g++
BUILD=build/
FLAGS=-Wall -Werror -Wextra -pedantic -lantlr3c -std=c++11 -g -pg
all: main
.PHONY: check-syntax
check-syntax:
-$(CPP) $(FLAGS) -fsyntax-only -x c++ $(CHK_SOURCES)
# the - is to ignore the return code.
main: build-dir grammar
$(CPP) main.cpp *.o -o $(BUILD)/main $(FLAGS)
grammar: build-dir
java -jar antlr/antlr-3.4-complete.jar EquationSystem.g
$(CC) *.c -c -lantrl3c
build-dir:
mkdir -p $(BUILD)
clean:
rm -rf $(BUILD)
rm -rf *.o *.c *.h *.tokens
# antlr o, c, h and tokens files
|