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.
 
 
 
 

21 lines
297 B

  1. CFLAGS=-Wall -Werror
  2. all: read calibrate
  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. calibrate.o: serial-util.h gpib.h zoom.h
  8. read: read.o serial-util.o
  9. calibrate: calibrate.o serial-util.o gpib.o zoom.o
  10. clean:
  11. rm -f *.o read calibrate