aboutsummaryrefslogtreecommitdiff
path: root/aufgabe4/Makefile
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2010-12-06 21:44:41 +0100
committerMichael Stapelberg <michael@stapelberg.de>2010-12-06 21:44:41 +0100
commitec42fc501399acbb12c3b73b9404a9529c2546ee (patch)
tree4580f603d2400f83c0cff13ac9864c115caf5453 /aufgabe4/Makefile
parenteb788e2a4aa2eadb2e7e456dfa17e8448d49c205 (diff)
downloadprozesskommunikation-ec42fc501399acbb12c3b73b9404a9529c2546ee.tar.gz
prozesskommunikation-ec42fc501399acbb12c3b73b9404a9529c2546ee.tar.bz2
makefile: -g für debug symbols
Diffstat (limited to 'aufgabe4/Makefile')
-rw-r--r--aufgabe4/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/aufgabe4/Makefile b/aufgabe4/Makefile
index 2d8d2a8..8e68789 100644
--- a/aufgabe4/Makefile
+++ b/aufgabe4/Makefile
@@ -1,11 +1,11 @@
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 -o queue.o queue.c
- gcc -o pk main.o conv.o log.o statistic.o monitor.o queue.o -lrt
+ gcc -g -Wall -c -o conv.o conv.c
+ gcc -g -Wall -c -o log.o log.c
+ gcc -g -Wall -c -o statistic.o statistic.c
+ gcc -g -Wall -c -o monitor.o monitor.c
+ gcc -g -Wall -c -o main.o main.c
+ gcc -g -Wall -c -o queue.o queue.c
+ gcc -g -o pk main.o conv.o log.o statistic.o monitor.o queue.o -lrt
clean:
rm -f *.o