summaryrefslogtreecommitdiff
path: root/pjlib
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib')
-rw-r--r--pjlib/build/Makefile4
-rw-r--r--pjlib/build/os-auto.mak.in4
2 files changed, 5 insertions, 3 deletions
diff --git a/pjlib/build/Makefile b/pjlib/build/Makefile
index 56e5ead2..1e64950d 100644
--- a/pjlib/build/Makefile
+++ b/pjlib/build/Makefile
@@ -66,7 +66,9 @@ export CC_OUT CC AR RANLIB HOST_MV HOST_RM HOST_RMDIR HOST_MKDIR OBJEXT LD LDOUT
# $(TARGET) is defined in os-$(OS_NAME).mak file in current directory.
#
-all: $(TARGETS)
+all: $(TARGETS) $(TARGETS_EXE)
+
+lib: $(TARGETS)
doc:
cd .. && rm -rf docs/$(PJ_VERSION) && doxygen docs/doxygen.cfg
diff --git a/pjlib/build/os-auto.mak.in b/pjlib/build/os-auto.mak.in
index 1c7e330e..478cc80f 100644
--- a/pjlib/build/os-auto.mak.in
+++ b/pjlib/build/os-auto.mak.in
@@ -30,7 +30,7 @@ export TEST_OBJS += @ac_main_obj@
# TARGETS are make targets in the Makefile, to be executed for this given
# operating system.
#
-export TARGETS = $(PJLIB_LIB) $(PJLIB_SONAME) $(TEST_EXE)
-
+export TARGETS = $(PJLIB_LIB) $(PJLIB_SONAME)
+export TARGETS_EXE = $(TEST_EXE)