me8100_test_counter/Makefile
changeset 0 c9b8efdb5369
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/me8100_test_counter/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_counter where the Makefile 
+# and the sources resides, you can use the make command with 
+# following parmeters:
+# $make 	  generates the executable me8100_test_counter
+# $make clean     deletes all files including *.o and *~ 
+
+me8100_test_counter:me8100_test_counter.o
+	gcc -o me8100_test_counter me8100_test_counter.o 
+
+me8100_test_counter.o:me8100_test_counter.c ../me8100.h
+	gcc -c me8100_test_counter.c -Wall -O
+
+clean:
+	rm -f *.o *~
\ No newline at end of file