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/makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Semestr 4/sieci/pracownia1/makefile b/Semestr 4/sieci/pracownia1/makefile
deleted file mode 100644
index 3c48d74..0000000
--- a/Semestr 4/sieci/pracownia1/makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-CC=gcc
-CFLAGS=-std=gnu17 -O2 -Wall -Wextra
-TARGET=traceroute
-
-all: $(TARGET)
-
-$(TARGET): $(TARGET).o
- $(CC) -o $(TARGET) $(TARGET).o
-
-
-$(TARGET).o: $(TARGET).c
- $(CC) $(CFLAGS) -c $(TARGET).c
-
-distclean:
- $(RM) $(TARGET)
- $(RM) $(TARGET).o
-
-clean:
- $(RM) $(TARGET).o