aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c3edc8c..6e02b4d 100644
--- a/Makefile
+++ b/Makefile
@@ -26,13 +26,13 @@ debug:
all: ${LIBNAME:=.so} ${LIBNAME:=.a}
${LIBNAME:=.so}: ${OBJ}
- ${CC} ${LDFLAGS} -fPIC -shared ${OBJ} -o $@
+ ${CC} ${LDFLAGS} -shared ${OBJ} -o $@
${LIBNAME:=.a}: ${OBJ}
ar rcs $@ ${OBJ}
.c.o:
- ${CC} ${CFLAGS} -fPIC -c $< -o $@
+ ${CC} ${CFLAGS} -c $< -o $@
clean:
rm -f ${OBJ} ${LIBNAME}.* *.core