aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-04 01:10:25 +0100
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-02-04 01:10:25 +0100
commit87292d98cf48876a5a3e4ad53f3dd91f51676e5a (patch)
tree65ad7cf156d6d165e295d69803df6eb93d35343a
parenta07a7d1583a2488dd38a1c4d52b9313551047591 (diff)
downloadlog-87292d98cf48876a5a3e4ad53f3dd91f51676e5a.tar.gz
log-87292d98cf48876a5a3e4ad53f3dd91f51676e5a.zip
Remove the `all` target
-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