diff options
author | Pixel <pixel@nobis-crew.org> | 2009-11-05 11:46:01 -0800 |
---|---|---|
committer | Pixel <pixel@nobis-crew.org> | 2009-11-05 11:46:01 -0800 |
commit | eed3ccd0e2bffb427c4e9e7fae9d92bd153ca0da (patch) | |
tree | fee670bd0def2114749c810f79e104b0413080c0 /Makefile | |
parent | 20722ea0f5a136a3339156650f210fe30019fcfd (diff) |
Adding CentOS mingw support, stripping and dist target support.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -17,7 +17,7 @@ LD = g++ -m32 endif CC = gcc CXX = g++ -STRIP = strip +STRIP = strip --strip-unneeded HAS_ORACLE=$(shell [ -d /usr/local/instantclient ] && echo true || echo false ]) @@ -174,6 +174,7 @@ all: dep modules dist: modules mkdir -p ../lua-interface-dist + $(STRIP) $(MODULES_LIST) cp $(MODULES_LIST) ../lua-interface-dist modules: $(MODULES_LIST) |