You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
584 B

  1. CFLAGS=-Wall
  2. all: read calibrate dctest dactest
  3. serial-util.o: serial-util.h
  4. gpib.o: serial-util.h
  5. zoom.o: serial-util.h
  6. read.o: serial-util.h
  7. mt19937ar.o: mt19937ar.h
  8. calibrate.o: serial-util.h gpib.h zoom.h
  9. dctest.o: serial-util.h gpib.h zoom.h mt19937ar.h
  10. dactest.o: serial-util.h gpib.h zoom.h mt19937ar.h
  11. read: read.o serial-util.o
  12. calibrate: calibrate.o serial-util.o gpib.o zoom.o
  13. dctest: LDFLAGS=-lpthread
  14. dctest: dctest.o serial-util.o gpib.o zoom.o mt19937ar.o
  15. dactest: dactest.o serial-util.o gpib.o zoom.o mt19937ar.o
  16. clean:
  17. rm -f *.o read calibrate dctest