aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-01-22 18:26:38 +0100
committerMattias Andrée <maandree@operamail.com>2014-01-22 18:26:38 +0100
commit443bcd2592429fc709e13676c36d3f928beaad7a (patch)
tree6b4f276976ad22258983203bf8dffeafba50f1c7 /Makefile
parenta public constructore for linked list nodes a level of flexibility to the data structures (diff)
downloadalgorithms-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c8a47c9..353e64b 100644
--- a/Makefile
+++ b/Makefile
@@ -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