aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2014-01-30 03:36:23 +0000
committerMike Buland <eichlan@xagasoft.com>2014-01-30 03:36:23 +0000
commit9072b0c98ba4f9412885a1a32002ee7214fd3dc0 (patch)
tree1f6f205c8f28da415fd12ce4a835b83efc52fb8c /Makefile
parent86e37bec7b2101555635201f83352c0e054f1849 (diff)
downloadlibbu++-9072b0c98ba4f9412885a1a32002ee7214fd3dc0.tar.gz
libbu++-9072b0c98ba4f9412885a1a32002ee7214fd3dc0.tar.bz2
libbu++-9072b0c98ba4f9412885a1a32002ee7214fd3dc0.tar.xz
libbu++-9072b0c98ba4f9412885a1a32002ee7214fd3dc0.zip
Attempting to fix OSX compatibility, it's not 100%, but it builds and most things seem to work. We've also tested against LLVM.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7997c4b..160e6c4 100644
--- a/Makefile
+++ b/Makefile
@@ -46,7 +46,7 @@ $(foreach fn,$(wildcard src/experimental/*.h),bu/$(notdir ${fn})): bu/%: src/exp
46 ln -s ../$< $@ 46 ln -s ../$< $@
47 47
48$(patsubst src/%,bu/%,$(wildcard src/compat/*.h)): bu/%: src/% 48$(patsubst src/%,bu/%,$(wildcard src/compat/*.h)): bu/%: src/%
49 ln -s ../../$< $@ 49 mkdir -p bu/compat; ln -s ../../$< $@
50 50
51autoconfig: autoconfig.cpp 51autoconfig: autoconfig.cpp
52 ${CXX} -o autoconfig autoconfig.cpp 52 ${CXX} -o autoconfig autoconfig.cpp