graph_to_eps mission accomplished.
- lemon/graph_to_eps.h header created
- lemon/bezier.h: Tools to compute with bezier curves (unclean and undocumented
interface, used internally by graph_to_eps.h)
- demo/graph_to_eps_demo.cc: a simple demo for lemon/graph_to_eps.h
1 INCLUDEDIRS ?= -I. -I../../../include -I..
2 CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
4 BINARIES ?= iterator_bfs_demo iterator_bfs_demo_1 edmonds_karp_demo edmonds_karp_demo_1
6 # Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
7 # ismert rendszeren :-) (Misi)
8 CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
15 # Minden binarishoz egy sor, felsorolva, hogy mely object file-okbol
17 # Kiveve ha siman file.cc -> file esetrol van szo, amikor is nem kell
20 #proba: proba.o seged.o
26 -$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
27 # -$(CXX) $(CXXFLAGS) -M *.cc > .depend
33 $(RM) *.o $(BINARIES) .depend
35 .PHONY: all clean dep depend