diff options
author | 2023-02-02 13:39:51 +0100 | |
---|---|---|
committer | 2023-02-02 13:39:51 +0100 | |
commit | 858da74c857763c7a1948f6581b172cd89925a06 (patch) | |
tree | c0e82e14d49f99f7714b6a00188ef643331cb729 | |
parent | a664bda36b9e28d3c2a89075441790b1842337d9 (diff) | |
download | log-858da74c857763c7a1948f6581b172cd89925a06.tar.gz log-858da74c857763c7a1948f6581b172cd89925a06.zip |
Add `all` target
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -15,6 +15,8 @@ ${LIBNAME:=.so}: ${OBJ} ${LIBNAME:=.a}: ${OBJ} ar rcs $@ ${OBJ} +all: ${LIBNAME:=.so} ${LIBNAME:=.a} test-app + .c.o: ${CC} ${CFLAGS} -fPIC -c $< |