aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-10-27 00:29:30 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-10-27 00:29:45 +0000
commit964e001dd5db703f85d317a2912e44fdf1c7b08a (patch)
tree99172308ca99f3dbe0143859a968a580681eb022 /Makefile
parent03ba2096c1ba186d0b6045423d8d3de0f243ef37 (diff)
downloadalgorithms-964e001dd5db703f85d317a2912e44fdf1c7b08a.tar.gz
algorithms-964e001dd5db703f85d317a2912e44fdf1c7b08a.tar.bz2
algorithms-964e001dd5db703f85d317a2912e44fdf1c7b08a.zip
qsort: generate random numbers in hand instead of reading them
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5c9d4f8..0985ca4 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,9 @@ list.out: impls/list.cpp
bsearch.out: impls/bsearch.cpp
$(CC) $(CFLAGS) $^ -o $@
+qsort.out: impls/qsort.cpp
+ $(CC) $(CFLAGS) $^ -o $@
+
vec.out: impls/vec.c
$(CC) $(CFLAGS) $^ -o $@