######################################################################
#
#	$Id: Makefile,v 1.1 2008/08/12 13:40:44 rdrost Exp $
#
#    Child Makefile used to build Print Engine library.
#
######################################################################

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

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

# Add stuff here for additional cleanup
localclean: clean_my_objs

component_clobber: clean_my_libs

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

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

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

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

#
# List of C object files for this library.
#
C_OBJ= $(OBJS)/tftp.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


