buddylistgrapher
diff Makefile @ 0:21d9547ef242
initial commit
C++ and sh editions work similar
author | meillo@marmaro.de |
---|---|
date | Mon, 28 May 2007 17:41:28 +0200 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/Makefile Mon May 28 17:41:28 2007 +0200 1.3 @@ -0,0 +1,35 @@ 1.4 + 1.5 +########################### 1.6 +# 1.7 +# Makefile for PhyEngine01 1.8 +# 1.9 +# Autor: Julian Forster 1.10 +# www.ProgMaschine.de.vu 1.11 +# 1.12 +########################### 1.13 + 1.14 +################### 1.15 +# Source and Progs 1.16 +################### 1.17 + 1.18 +SOURCES = graph.cpp 1.19 +PROGRAMS = graph 1.20 + 1.21 +######################### 1.22 +# Compiler Configuration 1.23 +######################### 1.24 + 1.25 +CC = g++ 1.26 +CFLAGS = -O 1.27 + 1.28 +#Compile all programs 1.29 +all: clean $(PROGRAMS) 1.30 + 1.31 +$(PROGRAMS): 1.32 + $(CC) -o $(PROGRAMS) $(CFLAGS) $(SOURCES) 1.33 + 1.34 +clean: 1.35 + rm $(PROGRAMS) 1.36 + 1.37 +dot: $(PROGRAMS) 1.38 + ./$(PROGRAMS) input.txt | dot -Tpng > pic.png