diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-01-22 18:26:38 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-01-22 18:26:38 +0100 |
commit | 443bcd2592429fc709e13676c36d3f928beaad7a (patch) | |
tree | 6b4f276976ad22258983203bf8dffeafba50f1c7 /Makefile | |
parent | a public constructore for linked list nodes a level of flexibility to the data structures (diff) | |
download | algorithms-and-data-structures-443bcd2592429fc709e13676c36d3f928beaad7a.tar.gz algorithms-and-data-structures-443bcd2592429fc709e13676c36d3f928beaad7a.tar.bz2 algorithms-and-data-structures-443bcd2592429fc709e13676c36d3f928beaad7a.tar.xz |
no hardcoding of gpp command
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ obj/%.class: obj/%.java obj/%.java: src/%.java $(foreach F, $(PP), src/$(F)) mkdir -p "$(shell dirname "$@")" - $(GPP) -s £ < "$<" > "$@" + env GPP="$(GPP)" $(GPP) -s £ < "$<" > "$@" $(OBJ_LINKED_LISTS): src/datastructures/linkedlists/template |