aboutsummaryrefslogtreecommitdiff
path: root/aufgabe4
diff options
context:
space:
mode:
Diffstat (limited to 'aufgabe4')
-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