# To execute this Makefile type "make".  This will automatically
# execute the first command following a colon.  For example, to
# remove all object files and the executable file slurp type
# "make clean". 

OBJS =  nanet.o  netlib.o 

INCLUDES = header.h

MAKER = cc

# .o files are produced from .c files
# $ stands for macro substitution
.cc.o:; ${MAKER} -c  $*.c

all:   send_mail	

send_mail:	${OBJS}
		cc -o send_mail ${OBJS} 


