#
# Makefile for ExpAvail
#
# $Id: Makefile,v 1.2 2004/10/29 23:53:14 graziano Exp $
#

# include common variables
include ../../Makedefs

# what we are building here
OBJS	 =	$(buildobjdir)/availtest.o

.PHONY: all clean dist install

all: $(OBJS)

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

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

# only objects: nothing to install
install:


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

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

