src/work/akos/makefile
changeset 960 908a1a6f0752
parent 63 8a39e8b9cdd7
child 963 5a7556e9e340
equal deleted inserted replaced
0:a089f50f4ee5 1:fb392a04e592
     1 CXXFLAGS = -g -Wall -ansi -pedantic
     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++)
     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 
     3 
     4 loader_demo: loader_demo.cc ../list_graph.hh ../bfs_iterator.hh loader.h
     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 
     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 
     6 clean:
    10 clean:
     7 	$(RM) loader_demo
    11 	$(RM) loader_demo simann_test
     8 
    12 
     9 .PHONY: clean
    13 .PHONY: clean