summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 597fe3f..1db2afa 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $<