diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |