# Makefile for the Meilhaus me8100 driver test program
# If you are in the directory ./me8100_test_int where the Makefile 
# and the sources resides, you can use the make command with 
# following parmeters:
# $make 	  generates the executable me8100_test_int
# $make clean     deletes all files including *.o and *~ 

me8100_test_int:me8100_test_int.o
	gcc -o me8100_test_int me8100_test_int.o 

me8100_test_int.o:me8100_test_int.c ../me8100.h
	gcc -c me8100_test_int.c -Wall -O

clean:
	rm -f *.o *~