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 := pv_http_parcom
      8 
      9 
     10 
     11 
     12 
     13 
     14 
     15 
     16 
     17 SRCDIR := ../../src
     18 INCSRCDIR := ../../include
     19 
     20 SRCS := http_composer.cpp \
     21 	http_parser.cpp \
     22 	string_keyvalue_store.cpp
     23 
     24 HDRS := http_composer.h \
     25 	http_parser.h \
     26 	http_parser_external.h
     27 
     28 include $(MK)/library.mk
     29 
     30 
     31 
     32