Home | History | Annotate | Download | only in OpenglOsUtils
      1 # This build script corresponds to a small library containing
      2 # OS-specific support functions for:
      3 #   - thread-local storage
      4 #   - dynamic library loading
      5 #   - child process creation and wait  (probably not needed in guest)
      6 #
      7 LOCAL_PATH := $(call my-dir)
      8 
      9 ### Guest library ##############################################
     10 $(call emugl-begin-static-library,libOpenglOsUtils)
     11 
     12     $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
     13     $(call emugl-export,LDLIBS,-ldl)
     14 
     15     LOCAL_SRC_FILES := \
     16         osProcessUnix.cpp \
     17         osThreadUnix.cpp \
     18         osDynLibrary.cpp
     19 
     20 $(call emugl-end-module)
     21