COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/makefile @ 416:8ef4ad91c189

Last change on this file since 416:8ef4ad91c189 was 409:7ab7f083760a, checked in by marci, 20 years ago

stGraphWrapper is almost working

File size: 906 bytes
Line 
1INCLUDEDIRS ?= -I../include -I. -I./{marci,jacint,alpar,klao,akos}
2CXXFLAGS = -g -O3 -W -Wall $(INCLUDEDIRS) -ansi -pedantic
3
4BINARIES ?= bin_heap_demo
5
6# Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
7# ismert rendszeren :-)  (Misi)
8CXX := $(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++)
10CC := $(CXX)
11
12
13all: $(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
29makefile: .depend
30sinclude .depend
31
32clean:
33        $(RM) *.o $(BINARIES) .depend
34
35.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.