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.
 
 
 
 

16 lines
235 B

  1. CFLAGS=-std=c99 -Wall -Werror
  2. all: read calibrate
  3. serial-util.o: serial-util.h
  4. gpib.o: serial-util.h
  5. read.o: serial-util.h
  6. calibrate.o: serial-util.h gpib.h
  7. read: read.o serial-util.o
  8. calibrate: calibrate.o serial-util.o gpib.o