me8100_test_counter/Makefile
changeset 0 c9b8efdb5369
equal deleted inserted replaced
-1:000000000000 0:c9b8efdb5369
       
     1 # Makefile for the Meilhaus me8100 driver test program
       
     2 # If you are in the directory ./me8100_test_counter where the Makefile 
       
     3 # and the sources resides, you can use the make command with 
       
     4 # following parmeters:
       
     5 # $make 	  generates the executable me8100_test_counter
       
     6 # $make clean     deletes all files including *.o and *~ 
       
     7 
       
     8 me8100_test_counter:me8100_test_counter.o
       
     9 	gcc -o me8100_test_counter me8100_test_counter.o 
       
    10 
       
    11 me8100_test_counter.o:me8100_test_counter.c ../me8100.h
       
    12 	gcc -c me8100_test_counter.c -Wall -O
       
    13 
       
    14 clean:
       
    15 	rm -f *.o *~