From c627ca597d62cb6c55f954d4eac2ccf23c3392c0 Mon Sep 17 00:00:00 2001 From: Avery Pennarun Date: Wed, 30 Dec 2009 17:14:21 -0500 Subject: [PATCH] Get rid of extra CFLAGS/LDFLAGS that I don't understand anyway. I just copied them from some other python module. But it's better to keep things simple, I think. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1707560..b07f7d0 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fwrapv -fPIC +CFLAGS=-Wall -g -O2 -Werror -I/usr/include/python2.5 -g -fPIC default: all @@ -7,7 +7,7 @@ all: bup-split bup-join bup datagen hashsplit.so datagen: datagen.o hashsplit.so: hashsplitmodule.o - $(CC) -shared -Wl,-Bsymbolic-functions -o $@ $< + $(CC) -shared -o $@ $< test: all ./bup split tags1 -- 2.39.2