aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 34c41056df6c4e8486017fb36048fcc4e82615eb (plain)
1
2
3
4
5
6
7
8
LIB_FILES = tree.cpp parser.cpp
PROG_FILES = main.cpp

all: parser

parser:	$(PROG_FILES) $(LIB_FILES)
	g++ -O2 -g -o parser $(PROG_FILES) $(LIB_FILES)