src/work/akos/makefile
changeset 1043 52a2201a88e9
parent 960 908a1a6f0752
equal deleted inserted replaced
1:fb392a04e592 2:4e3c574a4fff
     1 CXXFLAGS = -g -Wall -ansi -pedantic
     1 BINARIES = simann_demo
     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 INCLUDEDIRS= -I. -I.. -I../.. -I../{marci,jacint,alpar,johanna,athos,akos}
     3 
     3 include ../makefile
     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