diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-06 15:11:05 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-06 15:11:05 -0800 |
commit | 36404804f4a21d82b5fdb6817635f15c3940916c (patch) | |
tree | facda61b767fcd520dca8a86f61553150296b70b /Makefile | |
parent | b7e8737e4592895b541d62777b0a8dd6da0d61a5 (diff) |
Fixing dist command for darwin.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5,15 +5,16 @@ SHARED_FLAGS=-dynamiclib SHARED_EXT=dylib CPPFLAGS = -dynamic LD = g++ -arch i386 +STRIP = strip -x else ARCH_FLAGS=-march=i686 -m32 SHARED_FLAGS=-shared SHARED_EXT=so LD = g++ -m32 +STRIP = strip --strip-unneeded endif CC = gcc CXX = g++ -STRIP = strip --strip-unneeded AR = ar rcs INCLUDES = \ |