aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-23 07:50:32 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-23 07:50:32 +0100
commit8407e4f36ed5387ed1492cb8ac34474d8b288256 (patch)
tree9c8536cf8e20c1d90dd2fdff76b7e2cae61c5e0f /Makefile
parentwhitespace (diff)
downloadalgorithms-and-data-structures-8407e4f36ed5387ed1492cb8ac34474d8b288256.tar.gz
algorithms-and-data-structures-8407e4f36ed5387ed1492cb8ac34474d8b288256.tar.bz2
algorithms-and-data-structures-8407e4f36ed5387ed1492cb8ac34474d8b288256.tar.xz
add sentinel singly linked list
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 353e64b..0e85b78 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ obj/%.java: src/%.java $(foreach F, $(PP), src/$(F))
env GPP="$(GPP)" $(GPP) -s £ < "$<" > "$@"
-$(OBJ_LINKED_LISTS): src/datastructures/linkedlists/template
+$(OBJ_LINKED_LISTS): src/datastructures/linkedlists/template src/datastructures/linkedlists/sentinel-template
obj/algorithms/searching/MultiinterpolationSearch.class: obj/algorithms/searching/InterpolationSearch.class
obj/algorithms/searching/MultibinarySearch.class: obj/algorithms/searching/BinarySearch.class