src/work/marci/experiment/makefile
author deba
Wed, 08 Sep 2004 12:06:45 +0000 (2004-09-08)
changeset 822 88226d9fe821
permissions -rw-r--r--
The MapFactories have been removed from the code because
if we use macros then they increases only the complexity.

The pair iterators of the maps are separeted from the maps.

Some macros and comments has been changed.
     1 INCLUDEDIRS ?= -I. -I../../../include -I..
     2 CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
     3 
     4 BINARIES ?= iterator_bfs_demo iterator_bfs_demo_1 edmonds_karp_demo edmonds_karp_demo_1
     5 
     6 # Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
     7 # ismert rendszeren :-)  (Misi)
     8 CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     9 CC := $(CXX)
    10 
    11 
    12 all: $(BINARIES)
    13 
    14 ################
    15 # Minden binarishoz egy sor, felsorolva, hogy mely object file-okbol
    16 # all elo.
    17 # Kiveve ha siman file.cc -> file  esetrol van szo, amikor is nem kell
    18 # irni semmit.
    19 
    20 #proba: proba.o seged.o
    21 
    22 ################
    23 
    24 
    25 .depend dep depend:
    26 	-$(CXX) $(INCLUDEDIRS) -M $(BINARIES:=.cc) > .depend #2>/dev/null
    27 #	-$(CXX) $(CXXFLAGS) -M *.cc > .depend
    28 
    29 makefile: .depend
    30 sinclude .depend
    31 
    32 clean:
    33 	$(RM) *.o $(BINARIES) .depend
    34 
    35 .PHONY: all clean dep depend