#
# Makefile for Common
#
# $Id: Makefile,v 1.12 2004/10/29 23:53:12 graziano Exp $
#

# include common variables
include ../Makedefs

OBJS	= 		$(buildobjdir)/register.o \
			$(buildobjdir)/host_protocol.o \
			$(buildobjdir)/nws_api.o \
			$(buildobjdir)/experiments.o 

.PHONY : all clean install

all: $(OBJS) $(PROGRAMS)

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

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

install:

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

