diff options
author | dos-reis <gdr@axiomatics.org> | 2014-02-03 10:01:34 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2014-02-03 10:01:34 +0000 |
commit | ac136e818759d62bd8eabad781aabdba9a7f589e (patch) | |
tree | 2d0f315d30506a3c8953b5d3df31690730ece1f0 /src/sman | |
parent | cf47e3c603f47bd05e955c8bf6667273773845e2 (diff) | |
download | open-axiom-ac136e818759d62bd8eabad781aabdba9a7f589e.tar.gz |
Fix global variable names in Makefiles
Diffstat (limited to 'src/sman')
-rw-r--r-- | src/sman/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/sman/Makefile.in b/src/sman/Makefile.in index 86a01cba..71ac4ae3 100644 --- a/src/sman/Makefile.in +++ b/src/sman/Makefile.in @@ -1,4 +1,4 @@ -# Copyright (C) 2007-2011, Gabriel Dos Reis. +# Copyright (C) 2007-2014, Gabriel Dos Reis. # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -33,11 +33,11 @@ subdir = src/sman/ # this is where to put the various commands -OUT= $(axiom_target_bindir) -OUTLIB= $(axiom_target_libdir) +OUT= $(oa_target_bindir) +OUTLIB= $(oa_target_libdir) # this is where the include files live -INC= $(axiom_src_srcdir)/include +INC= $(oa_src_srcdir)/include build_libdir = $(top_builddir)/src/lib |