os-win32.mak 989 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # OS specific configuration for Win32 OS target.
  3. #
  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 += addr_resolv_sock.o guid_win32.o unicode_win32.o \
  10. log_writer_stdout.o os_core_win32.o \
  11. os_error_win32.o os_time_bsd.o os_timestamp_common.o \
  12. os_timestamp_win32.o \
  13. pool_policy_malloc.o sock_bsd.o sock_select.o
  14. #export PJLIB_OBJS += ioqueue_winnt.o
  15. export PJLIB_OBJS += ioqueue_select.o
  16. export PJLIB_OBJS += file_io_win32.o file_access_win32.o
  17. #export PJLIB_OBJS += file_io_ansi.o
  18. export PJLIB_OBJS += sock_qos_bsd.o
  19. #
  20. # TEST_OBJS are operating system specific object files to be included in
  21. # the test application.
  22. #
  23. export TEST_OBJS += main.o
  24. #
  25. # TARGETS are make targets in the Makefile, to be executed for this given
  26. # operating system.
  27. #
  28. export TARGETS = $(PJLIB_LIB) $(TEST_EXE)