me8100_test_int/Makefile
changeset 0 c9b8efdb5369
child 3 fc24e3b47731
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_int 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_int
       
     6 # $make clean     deletes all files including *.o and *~ 
       
     7 
       
     8 me8100_test_int:me8100_test_int.o
       
     9 	gcc -o me8100_test_int me8100_test_int.o 
       
    10 
       
    11 me8100_test_int.o:me8100_test_int.c ../me8100.h
       
    12 	gcc -c me8100_test_int.c -Wall -O
       
    13 
       
    14 clean:
       
    15 	rm -f *.o *~