aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2014-02-03 10:01:34 +0000
committerdos-reis <gdr@axiomatics.org>2014-02-03 10:01:34 +0000
commitac136e818759d62bd8eabad781aabdba9a7f589e (patch)
tree2d0f315d30506a3c8953b5d3df31690730ece1f0 /src/utils
parentcf47e3c603f47bd05e955c8bf6667273773845e2 (diff)
downloadopen-axiom-ac136e818759d62bd8eabad781aabdba9a7f589e.tar.gz
Fix global variable names in Makefiles
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/Makefile.in b/src/utils/Makefile.in
index 354d0933..b0a0e504 100644
--- a/src/utils/Makefile.in
+++ b/src/utils/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2013, Gabriel Dos Reis.
+# Copyright (C) 2011-2014, Gabriel Dos Reis.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -53,7 +53,7 @@ oa_include_flags = -I. -I$(oa_target_includedir) \
-I$(top_srcdir)/src/include \
-DOPENAXIOM_ROOT_DIRECTORY="\"$(open_axiom_installdir)\""
-oa_target_oalib = $(axiom_target_libdir)/libOpenAxiom.$(LIBEXT)
+oa_target_oalib = $(oa_target_libdir)/libOpenAxiom.$(LIBEXT)
.PHONY: all all-ax all-utils
.SUFFIXES:
@@ -70,8 +70,8 @@ stamp: $(oa_target_oalib) $(bin_PROGRAMS)
$(STAMP) stamp
$(oa_target_oalib): libOpenAxiom.$(LIBEXT)
- if [ ! -d $(axiom_target_libdir) ]; then \
- mkdir -p $(axiom_target_libdir); \
+ if [ ! -d $(oa_target_libdir) ]; then \
+ mkdir -p $(oa_target_libdir); \
fi
cp $< $@