aboutsummaryrefslogtreecommitdiff
path: root/aufgabe3/Makefile
diff options
context:
space:
mode:
authorThorsten Töpper <atsutane@freethoughts.de>2011-01-02 18:12:50 +0100
committerThorsten Töpper <atsutane@freethoughts.de>2011-01-02 18:12:50 +0100
commitb87e466a9acdd4a834ce0d50f23a5960d0e51992 (patch)
tree637cbd5f200651117ed4f0e7e19f8c12de7767ba /aufgabe3/Makefile
parent33a276e2ead6191bb5995c741efd4914d9cf44b0 (diff)
downloadprozesskommunikation-b87e466a9acdd4a834ce0d50f23a5960d0e51992.tar.gz
prozesskommunikation-b87e466a9acdd4a834ce0d50f23a5960d0e51992.tar.bz2
Aufgabe 3: Makefile: Debugsymbole hinzugefügt.
Diffstat (limited to 'aufgabe3/Makefile')
-rw-r--r--aufgabe3/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/aufgabe3/Makefile b/aufgabe3/Makefile
index c8a143b..966b312 100644
--- a/aufgabe3/Makefile
+++ b/aufgabe3/Makefile
@@ -1,9 +1,9 @@
all:
- gcc -Wall -c -o conv.o conv.c
- gcc -Wall -c -o log.o log.c
- gcc -Wall -c -o statistic.o statistic.c
- gcc -Wall -c -o monitor.o monitor.c
- gcc -Wall -c -o main.o main.c
+ gcc -Wall -c -g -o conv.o conv.c
+ gcc -Wall -c -g -o log.o log.c
+ gcc -Wall -c -g -o statistic.o statistic.c
+ gcc -Wall -c -g -o monitor.o monitor.c
+ gcc -Wall -c -g -o main.o main.c
gcc -o pk main.o conv.o log.o statistic.o monitor.o -lrt
clean: