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 := pvdummyinputnode
      8 
      9 
     10 XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     11 
     12 
     13 
     14 
     15 
     16 
     17 SRCDIR := ../../src
     18 INCSRCDIR := ../../include
     19 
     20 SRCS := pvmf_dummy_fileinput_node.cpp \
     21 	pvmf_fileinput_port.cpp
     22 
     23 
     24 
     25 HDRS := pvmf_fileinput_node_extension.h \
     26         pvmf_dummy_fileinput_node_factory.h \
     27 	pvmf_dummy_fileinput_node.h \
     28 	pvmf_fileinput_node_internal.h \
     29 	pvmf_fileinput_port.h \
     30 	pvmf_fileinput_settings.h
     31 
     32 
     33 include $(MK)/library.mk
     34 
     35