aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/sieci/pracownia1/makefile
diff options
context:
space:
mode:
authorFranciszek Malinka <franciszek.malinka@gmail.com>2021-03-16 19:31:22 +0100
committerFranciszek Malinka <franciszek.malinka@gmail.com>2021-03-16 19:31:22 +0100
commit5c974d1f80d6bbbcbbe7138fec974a79379702b2 (patch)
treebb9f6d5e4086b3b81d2a4871ca37de9208bf0b64 /Semestr 4/sieci/pracownia1/makefile
parentb7b9ebd921a5161012dfd29ffa6ca04729283e19 (diff)
pracownia 1 z sieci
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