src/work/makefile
author marci
Sat, 24 Apr 2004 14:25:03 +0000
changeset 392 b8d635e1672d
parent 390 8dc830d3f9ef
child 393 4535f78639e2
permissions -rw-r--r--
g++-4.0
     1 INCLUDEDIRS ?= -I../include -I. -I./{marci,jacint,alpar,klao,akos}
     2 CXXFLAGS = -g -O3 -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