source:
lemon-0.x/src/work/akos/makefile
@
960:908a1a6f0752
Last change on this file since 960:908a1a6f0752 was 960:908a1a6f0752, checked in by , 20 years ago | |
---|---|
File size: 421 bytes |
Line | |
---|---|
1 | CXXFLAGS = -g -Wall -ansi -pedantic |
2 | CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++) |
3 | |
4 | loader_demo: loader_demo.cc ../list_graph.hh ../bfs_iterator.hh loader.h |
5 | $(CXX) $(CXXFLAGS) -I. -I.. loader_demo.cc -o loader_demo |
6 | |
7 | simann_test: simann_demo.cc simann.h |
8 | $(CXX) $(CXXFLAGS) -I. -I.. loader_demo.cc -o loader_demo |
9 | |
10 | clean: |
11 | $(RM) loader_demo simann_test |
12 | |
13 | .PHONY: clean |
Note: See TracBrowser
for help on using the repository browser.