Commit 3604deea authored by Rich Prohaska's avatar Rich Prohaska

strip libs and utils. addresses #74

git-svn-id: file:///svn/tokudb@919 c7de825b-a66e-492c-adef-691d508d4ae1
parent 34f43b45
...@@ -29,6 +29,9 @@ logformat: ...@@ -29,6 +29,9 @@ logformat:
check: $(LIBNAME).$(LIBEXT) check: $(LIBNAME).$(LIBEXT)
python tokuglobals.py $(LIBNAME).$(LIBEXT) python tokuglobals.py $(LIBNAME).$(LIBEXT)
strip: $(LIBNAME).$(LIBEXT)
strip $(LIBNAME).$(LIBEXT)
clean: clean:
rm -rf $(LIBNAME).$(LIBEXT) $(LIBNAME).a *.o rm -rf $(LIBNAME).$(LIBEXT) $(LIBNAME).a *.o
......
ifndef BDBDIR ifndef BDBDIR
BDBDIR=/usr/local/BerkeleyDB.4.1 BDBDIR=/usr/local/BerkeleyDB.4.4
endif endif
BDB_DUMP=$(BDBDIR)/bin/db_dump BDB_DUMP=$(BDBDIR)/bin/db_dump
BDB_LOAD=$(BDBDIR)/bin/db_load BDB_LOAD=$(BDBDIR)/bin/db_load
...@@ -27,6 +27,9 @@ all: $(UTILS) $(STATIC_UTILS) ...@@ -27,6 +27,9 @@ all: $(UTILS) $(STATIC_UTILS)
%_static: %.c %_static: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(STATIC_LDFLAGS) $(CC) $(CPPFLAGS) $(CFLAGS) -o $@ $< $(STATIC_LDFLAGS)
strip: $(STATIC_UTILS)
strip $(STATIC_UTILS)
test: test_gen test_load test_dump test_bdb_tokudb test: test_gen test_load test_dump test_bdb_tokudb
test_gen: test_gen_hex test_gen: test_gen_hex
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment