aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-10-17 17:38:07 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-10-17 17:38:07 +0300
commit82ec99f51b2b3b7a7b36b43b22df07ec503158b8 (patch)
tree4b308e68145ff124c50c7a5d4ebec8f0060d35e6 /Makefile
parent5d294755542190ac5135af8e120e313b55828625 (diff)
task7 initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 710a9d8..0000000
--- a/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-
-VAR ?= 1
-
-all: 6_1 6_2
-
-gen: gen.c
- $(CC) -o $@ $<
-
-6_1: 6_1.c gen
- $(CC) -o $@ $<
-
-6_2: 6_2.c
- $(CC) -o $@ $< -lm
-
-.PHONY: clean run1 run2
-
-run1: gen 6_1
- ./gen 100 in.1
- ./6_1 -i in.1 -o out.1 $(VAR)
-
-run2: 6_2
- ./6_2 -1 t2.1 -2 t2.2 -a 0 -b 3.141592657 -x 0.1
-
-clean:
- rm -f gen 6_1 6_2 in.1 out.1 t2.1 t2.2