diff options
author | 2023-02-04 01:10:25 +0100 | |
---|---|---|
committer | 2023-02-04 01:10:25 +0100 | |
commit | 87292d98cf48876a5a3e4ad53f3dd91f51676e5a (patch) | |
tree | 65ad7cf156d6d165e295d69803df6eb93d35343a | |
parent | a07a7d1583a2488dd38a1c4d52b9313551047591 (diff) | |
download | log-87292d98cf48876a5a3e4ad53f3dd91f51676e5a.tar.gz log-87292d98cf48876a5a3e4ad53f3dd91f51676e5a.zip |
Remove the `all` target
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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 |