src/work/makefile
author alpar
Mon, 26 Apr 2004 08:07:53 +0000
changeset 405 a2d8ec38e8db
parent 392 b8d635e1672d
child 409 7ab7f083760a
permissions -rw-r--r--
#define HUGO_SMART_GRAPH_H ---> #define HUGO_LIST_GRAPH_H
     1 INCLUDEDIRS ?= -I../include -I. -I./{marci,jacint,alpar,klao,akos}
     2 CXXFLAGS = -g -O0 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
     3 
     4 BINARIES ?= bin_heap_demo
     5 
     6 # Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
     7 # ismert rendszeren :-)  (Misi)
     8 #CXX := $(shell type -p g++-3.4 || type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
     9 CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
    10 CC := $(CXX)
    11 
    12 
    13 all: $(BINARIES)
    14 
    15 ################
    16 # Minden binarishoz egy sor, felsorolva, hogy mely object file-okbol
    17 # all elo.
    18 # Kiveve ha siman file.cc -> file  esetrol van szo, amikor is nem kell
    19 # irni semmit.
    20 
    21 #proba: proba.o seged.o
    22 
    23 ################
    24 
    25 
    26 .depend dep depend:
    27 	-$(CXX) $(CXXFLAGS) -M $(BINARIES:=.cc) > .depend
    28 
    29 makefile: .depend
    30 sinclude .depend
    31 
    32 clean:
    33 	$(RM) *.o $(BINARIES) .depend
    34 
    35 .PHONY: all clean dep depend