#
# Makefile for ExpBatchQ
#
# $Id: Makefile,v 1.1 2005/05/09 21:03:56 nurmi Exp $


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

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

.PHONY: all clean dist install

all: $(OBJS)

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

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

# 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 $@

