COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/akos/makefile @ 960:908a1a6f0752

Last change on this file since 960:908a1a6f0752 was 960:908a1a6f0752, checked in by Akos Ladanyi, 19 years ago

Renamed simann_test.cc to simann_demo.cc.

File size: 421 bytes
Line 
1CXXFLAGS = -g -Wall -ansi -pedantic
2CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
3
4loader_demo: loader_demo.cc ../list_graph.hh ../bfs_iterator.hh loader.h
5        $(CXX) $(CXXFLAGS) -I. -I.. loader_demo.cc -o loader_demo
6
7simann_test: simann_demo.cc simann.h
8        $(CXX) $(CXXFLAGS) -I. -I.. loader_demo.cc -o loader_demo
9
10clean:
11        $(RM) loader_demo simann_test
12
13.PHONY: clean
Note: See TracBrowser for help on using the repository browser.