COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/work/makefile @ 376:5c12f3515452

Last change on this file since 376:5c12f3515452 was 347:e4ab32225f1c, checked in by Mihaly Barasz, 20 years ago

A generic map with value type [0, N) where N is a small integer.
Can enumerate keys with a given value.

File size: 783 bytes
RevLine 
[149]1INCLUDEDIRS ?= -I../include -I. -I./{marci,jacint,alpar,klao,akos}
2CXXFLAGS = -g -O -Wall $(INCLUDEDIRS) -ansi -pedantic
[3]3
[347]4BINARIES ?= bin_heap_demo
[3]5
[34]6# Hat, ez elismerem, hogy nagyon ronda, de mukodik minden altalam
7# ismert rendszeren :-)  (Misi)
8CXX := $(shell type -p g++-3.3 || type -p g++-3.2 || type -p g++-3.0 || type -p g++-3 || echo g++)
9CC := $(CXX)
10
11
12all: $(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
[132]24
25.depend dep depend:
[301]26        -$(CXX) $(CXXFLAGS) -M $(BINARIES:=.cc) > .depend
[34]27
28makefile: .depend
29sinclude .depend
[3]30
31clean:
[34]32        $(RM) *.o $(BINARIES) .depend
[7]33
[34]34.PHONY: all clean dep depend
Note: See TracBrowser for help on using the repository browser.