aboutsummaryrefslogtreecommitdiffstats
path: root/7_2/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov@twistea.su>2024-12-06 15:08:31 +0300
committerjustanothercatgirl <sotov@twistea.su>2024-12-06 15:08:31 +0300
commita470c304199866aa1f3d39ff22ec30734f03d617 (patch)
treeb08858e91b39fc108f2ab9b83c03ef7f881711ba /7_2/Makefile
parent24b8430fa7a9a81b88c5c172c99bbc9a520ff4ba (diff)
сделал 8 задание))))task8
Diffstat (limited to '7_2/Makefile')
-rw-r--r--7_2/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/7_2/Makefile b/7_2/Makefile
deleted file mode 100644
index 7c29431..0000000
--- a/7_2/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-
-all: main
-
-build:
- mkdir -p build
-
-build/%.o: src/%.c include/%.h build
- $(CC) -c -g -ggdb -o $@ $< -Iinclude
-
-main: main.c build/drawable.o build/figure.o build/input.o
- $(CC) -o $@ $^ -lm -lX11 -Iinclude
-
-.PHONY: clean
-
-clean:
- $(RM) *.o main build/*