aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2024-09-25 16:20:21 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2024-09-25 16:20:21 +0300
commite7ccbdde7766927af3a475b88b1d6c91514c1523 (patch)
treefc834c81d2b0cf06e1d41bf3d820c9a287cb50fa /Makefile
parent131bccb1e79a0507bcb93b29696941638351fa10 (diff)
Added task 3 to task 2 executable
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index aca0f03..0894ce2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-all: t1_a t1_b t2 test.so
+all: t1_a t1_b t23 test.so
T2FLAGS := -Wall
@@ -17,7 +17,7 @@ t1_a: main_1.c
t1_b: main_1.c
$(CC) -DPROG_MONTE_CARLO $^ -o $@
-t2: main_2.c
+t23: main_23.c
$(CC) $(T2FLAGS) $^ -o $@ $(T2LINKS)
test.so: test_f.c
@@ -26,5 +26,5 @@ test.so: test_f.c
.PHONY: clean
clean:
- rm -rf t1_a t1_b t2 test.so
+ rm -rf t1_a t1_b t23 test.so