Changeset 411:3c8801529a1f in lemon-0.x for src/work/marci/makefile
- Timestamp:
- 04/26/04 12:35:36 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@545
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/makefile
r409 r411 1 1 CXX2 = g++-2.95 2 2 #CXX3 := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++) 3 CXX3=$(CXX) 3 4 #CXX=$(CXX3) 4 5 #CC=$(CXX) … … 6 7 BOOSTROOT ?= /home/marci/boost 7 8 INCLUDEDIRS ?= -I../../include -I.. -I../{marci,jacint,alpar,klao,akos,athos} -I$(BOOSTROOT) 8 LEDAINCLUDE ?= -I$(LEDAROOT)/incl9 CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-309 #LEDAINCLUDE ?= -I$(LEDAROOT)/incl 10 #CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic -ftemplate-depth-30 10 11 11 12 LEDABINARIES = leda_graph_demo leda_bfs_dfs max_bipartite_matching_demo … … 31 32 $(CXX3) -Wall -O -L$(LEDAROOT) -o leda_graph_demo leda_graph_demo.o -lG -lL -lm 32 33 34 bipartite_matching_leda.o: 35 $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c bipartite_matching_leda.cc 36 37 bipartite_matching_leda: bipartite_matching_leda.o 38 $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o bipartite_matching_leda bipartite_matching_leda.o -lG -lL -lm 39 33 40 max_bipartite_matching_demo.o: 34 $(CXX3) -Wall -O -I.. -I../alpar -I$(LEDAROOT)/incl -I.-c max_bipartite_matching_demo.cc41 $(CXX3) $(CXXFLAGS) -I$(LEDAROOT)/incl -c max_bipartite_matching_demo.cc 35 42 36 43 max_bipartite_matching_demo: max_bipartite_matching_demo.o 37 $(CXX3) -Wall -O-L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm44 $(CXX3) $(CXXFLAGS) -L$(LEDAROOT) -o max_bipartite_matching_demo max_bipartite_matching_demo.o -lG -lL -lm 38 45 39 46 leda_bfs_dfs.o:
Note: See TracChangeset
for help on using the changeset viewer.