diff options
author | justanothercatgirl <sotov2070@gmail.com> | 2024-09-25 16:20:21 +0300 |
---|---|---|
committer | justanothercatgirl <sotov2070@gmail.com> | 2024-09-25 16:20:21 +0300 |
commit | e7ccbdde7766927af3a475b88b1d6c91514c1523 (patch) | |
tree | fc834c81d2b0cf06e1d41bf3d820c9a287cb50fa /Makefile | |
parent | 131bccb1e79a0507bcb93b29696941638351fa10 (diff) |
Added task 3 to task 2 executable
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |