1# Get the current local path as the first operation 2LOCAL_PATH := $(call get_makefile_dir) 3 4# Clear out the variables used in the local makefiles 5include $(MK)/clear.mk 6 7TARGET := pv_http_parcom 8 9 10 11 12 13 14 15 16 17SRCDIR := ../../src 18INCSRCDIR := ../../include 19 20SRCS := http_composer.cpp \ 21 http_parser.cpp \ 22 string_keyvalue_store.cpp 23 24HDRS := http_composer.h \ 25 http_parser.h \ 26 http_parser_external.h 27 28include $(MK)/library.mk 29 30 31 32