#
# Makefile for ExpTcpBw
#
# $Id: Makefile,v 1.8 2004/10/29 23:53:16 graziano Exp $
#

# include common varaibles
include ../../Makedefs

OBJS	=	$(buildobjdir)/tcp_bw_exp.o

.PHONY: all clean dist install

all: $(OBJS)

clean:
	@${RM} -f $(OBJS)

dist:
	@$(INSTALL) -d $(DIST_ROOT)/Sensor/ExpTcpBw
	@$(CP) Makefile *.c *.h $(DIST_ROOT)/Sensor/ExpTcpBw

#lib: $(OBJECTS)
#	$(AR) cr $(LIBRARY) $(OBJECTS)

install:

# Compilation rules for C.
$(buildobjdir)/%.o : %.c $(buildincdir)/*.h
	$(CC) $(INCLUDES) -I. $(CFLAGS) -c $< -o $@

