aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/sieci/pracownia1/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Semestr 4/sieci/pracownia1/makefile')
-rw-r--r--Semestr 4/sieci/pracownia1/makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Semestr 4/sieci/pracownia1/makefile b/Semestr 4/sieci/pracownia1/makefile
new file mode 100644
index 0000000..63f9518
--- /dev/null
+++ b/Semestr 4/sieci/pracownia1/makefile
@@ -0,0 +1,12 @@
+CC=gcc
+CFLAGS=-g -Wall -Wextra -Wshadow -pedantic -fsanitize=address -fsanitize=undefined
+
+TARGET=traceroute
+
+all: $(TARGET)
+
+$(TARGET): $(TARGET).c
+ $(CC) $(CFLAGS) -o $(TARGET) $(TARGET).c
+
+clean:
+ $(RM) $(TARGET) \ No newline at end of file