#!/usr/bin/make -f
CXXFLAGS=-O2

OBJECTS=client.o map.o mystate.o timetable.o grandstate.o
../runme: client.o $(OBJECTS)
	g++ -o ../runme $(OBJECTS)
