diff -r 000000000000 -r c9b8efdb5369 me8100_test_int/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/me8100_test_int/Makefile Wed Jan 16 14:01:55 2002 +0100 @@ -0,0 +1,15 @@ +# 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 *~ \ No newline at end of file