aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index afec99d..2b0f5a4 100644
--- a/Makefile
+++ b/Makefile
@@ -25,8 +25,6 @@ shared: libs
debug:
@make OPT=-g all
-all: ${LIBNAME:=.so} ${LIBNAME:=.a}
-
${LIBNAME:=.so}: ${OBJ}
${CC} ${LDFLAGS} -shared ${OBJ} -o $@
@@ -40,7 +38,7 @@ clean:
rm -f ${OBJ} ${LIBNAME}.* *.core
cd test && make clean
-tests: all
+tests: dist
cd test && make clean tests
include libs.target.mk