summaryrefslogtreecommitdiff
path: root/impl/Makefile
blob: 588c3ab33e2d700b0d710063bc2e9eda9ace3a84 (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 -g -lantlr3c -pg -std=c++11

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