######################################################################
#
#	$Id: Makefile,v 1.5.2.2 2008/07/03 15:09:46 jrakhval Exp $
#
#    Makefile used to build fast IP library.
#
######################################################################

# Root directory for netos.
BASEDIR=../..

# Include the parent makefile.
all: localall
-include $(BASEDIR)/Makefile.inc

#This is called to clean things up.
localclean: clean_my_objs

component_clobber: clean_my_libs

# Location of object files.
OBJS = ./objs/$(PROCESSOR)/32b/$(TOOLSET)

#
# The list of source directories.
#
SRCDIR=$(BASEDIR)/src/snmpcust

#
# The name and path of the library to be built.
#
ifeq ($(DEBUG), on)
LOCAL_LIB = $(BASEDIR)/$(LIBDIR)/libsnmpddbg.a
else
LOCAL_LIB = $(BASEDIR)/$(LIBDIR)/libsnmpd.a
endif

#
# Search path for source header files, specific to this library
#
INCDIRS += -I./../../h -I./../../h/snmp -I./../../h/threadx -I./../../h/tcpip 


#
# List of C object files for this library.
#
C_OBJ= $(OBJS)/Snmp_api.o


#
# List of C++ object files.
#
CC_OBJ=

#
# List of assembly object files.
#
S_OBJ=	

#
# Any extra compilier flags.
#
MY_CFLAGS =

#
# Any extra defines go here
#
MY_DEFINES =

-include $(BASEDIR)/Makefile.bld


