diff -r 000000000000 -r c9b8efdb5369 Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Wed Jan 16 14:01:55 2002 +0100 @@ -0,0 +1,25 @@ +# Makefile for the Meilhaus me8100 driver module +# If you are in the directory /me8100 where the Makefile and the sources +# resides, you can use the make command with following parmeters: +# $make generates me8100.o which is the driver module +# $make test8100 generates the executable test8100 +# $make test8100i generates the executable test8100i +# $make clean deletes all files including *.o and *~ + +me8100.o:me8100.c me8100.h + gcc -c me8100.c -Wall -O + +test8100:test8100.o + gcc -o test8100 test8100.o + +test8100.o:test8100.c me8100.h + gcc -c test8100.c -Wall -O + +test8100i:test8100i.o + gcc -o test8100i test8100i.o + +test8100i.o:test8100i.c me8100.h + gcc -c test8100i.c -Wall -O + +clean: + rm -f *.o *~ \ No newline at end of file