diff -r ee5959aa4410 -r c280de819a73 src/work/makefile --- a/src/work/makefile Sun Apr 17 18:57:22 2005 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,43 +0,0 @@ -INCLUDEDIRS ?= -I.. -I. -I./{marci,jacint,alpar,klao,akos} -CXXFLAGS += -g -O2 -W -Wall $(INCLUDEDIRS) -ansi -pedantic - -BINARIES ?= bin_heap_demo - -# Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam -# ismert rendszeren :-) (Misi) -ifdef GCCVER -CXX := g++-$(GCCVER) -else -CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++) -endif - -ifdef DEBUG -CXXFLAGS += -DDEBUG -endif - -CC := $(CXX) - - -all: $(BINARIES) - -################ -# Minden binarishoz egy sor, felsorolva, hogy mely object file-okbol -# all elo. -# Kiveve ha siman file.cc -> file esetrol van szo, amikor is nem kell -# irni semmit. - -#proba: proba.o seged.o - -################ - - -.depend dep depend: - -$(CXX) $(CXXFLAGS) -M $(BINARIES:=.cc) > .depend - -makefile: .depend -sinclude .depend - -clean: - $(RM) *.o $(BINARIES) .depend - -.PHONY: all clean dep depend