# define the module executable
TARGET = collect

# set up the defaults - you could add other things to build here
all: $(TARGET) 

# any extra libraries needed to build the executable
EXTRA_LIBS = 

# tell it where else to look for includes
EXTRA_INCLUDES = 

# any othe local definitions
EXTRA_DEFS = 

# other things to install
EXTRA_INSTALLS = 

# libraries, usually with a relative path, which this module will depend on
# i.e., when they change, the module will recompile
LOCAL_LIBS = 

# List of files which go into the support objects
FILES = collect

# if you were building a library and a module, you would put the library
# files in FILES, and the file containing the Module code (including main)
# here
MODFILES = 

# Get basic utility libraries
include $(UTILS_DIR)/include/maketools/ModUtils.mk

# List of reconfigurable interfaces used
# every reconfigurable interface has a .mk file which appends itself and
# all of its supporting libraries to INTF_LIBS
include $(UTILS_DIR)/include/LineScanner/LineScanner.mk
include $(UTILS_DIR)/include/VehState/VehState.mk

# Rest of a standard modules make file
include $(UTILS_DIR)/include/maketools/Module.mk

# you could put your own make targets here as well
