Flex/Bison based compiler and interpreter written in C++ (using Boost)
File detail
Source code
# Copyright (C) 2008 Kamil Dudka <xdudka00@stud.fit.vutbr.cz>
#
# This file is part of vyp08 (compiler and interpreter of VYP08 language).
#
# vyp08 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# vyp08 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with vyp08. If not, see <http://www.gnu.org/licenses/>.
.PHONY: clean pdf
PROJ=vyp08
PDF=$(PROJ).pdf
$(PDF): $(PROJ).tex $(PROJ)_content.tex $(PROJ).bib cls/*
pdflatex $(PROJ)
bibtex $(PROJ)
pdflatex $(PROJ)
pdflatex $(PROJ)
clean:
rm -f *.dvi *.log *.blg *.bbl *.toc *.aux *.out *.nav *.snm $(PDF)