equal
  deleted
  inserted
  replaced
  
    
    
|         |      1 # Makefile for the Meilhaus me8100 driver test program | 
|         |      2 # If you are in the directory ./me8100_test_dio 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_dio | 
|         |      6 # $make clean     deletes all files including *.o and *~  | 
|         |      7  | 
|         |      8 me8100_test_dio:me8100_test_dio.o | 
|         |      9 	gcc -o me8100_test_dio me8100_test_dio.o  | 
|         |     10  | 
|         |     11 me8100_test_dio.o:me8100_test_dio.c ../me8100.h | 
|         |     12 	gcc -c me8100_test_dio.c -Wall -O | 
|         |     13  | 
|         |     14 clean: | 
|         |     15 	rm -f *.o *~ |