Home | History | Annotate | Download | only in make
      1 # Get the current local path as the first operation
      2 LOCAL_PATH := $(call get_makefile_dir)
      3 
      4 # Clear out the variables used in the local makefiles
      5 include $(MK)/clear.mk
      6 
      7 TARGET := threadsafe_callback_ao
      8 
      9 XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     10 
     11 SRCDIR := ../../src
     12 INCSRCDIR := ../../src
     13 
     14 # compose final src list for actual build
     15 SRCS := threadsafe_callback_ao.cpp \
     16         threadsafe_mempool.cpp \
     17         threadsafe_queue.cpp
     18 
     19 
     20 HDRS := threadsafe_callback_ao.h \
     21 	threadsafe_mempool.h \
     22 	threadsafe_queue.h
     23 
     24 include $(MK)/library.mk
     25