os-auto.mak.in 1017 B

12345678910111213141516171819202122232425262728293031323334
  1. # @configure_input@
  2. # Determine OS specific files
  3. AC_OS_OBJS=@ac_os_objs@
  4. #
  5. # PJLIB_OBJS specified here are object files to be included in PJLIB
  6. # (the library) for this specific operating system. Object files common
  7. # to all operating systems should go in Makefile instead.
  8. #
  9. export PJLIB_OBJS += $(AC_OS_OBJS) \
  10. addr_resolv_sock.o \
  11. log_writer_stdout.o \
  12. os_timestamp_common.o \
  13. pool_policy_malloc.o sock_bsd.o sock_select.o
  14. #
  15. # TEST_OBJS are operating system specific object files to be included in
  16. # the test application.
  17. #
  18. export TEST_OBJS += @ac_main_obj@
  19. #
  20. # Additional LDFLAGS for pjlib-test
  21. #
  22. # Disabled, as this causes duplicated LDFLAGS, which may raise linking errors
  23. #export TEST_LDFLAGS += @LDFLAGS@ @LIBS@
  24. #
  25. # TARGETS are make targets in the Makefile, to be executed for this given
  26. # operating system.
  27. #
  28. export TARGETS = $(PJLIB_LIB) $(PJLIB_SONAME)
  29. export TARGETS_EXE = $(TEST_EXE)