CC = gcc
LIBS = 
CFLAGS = -g -O -Iinclude -Wall
LDFLAGS = -g

LIBSRC = include/serial.c include/cf_packet.c include/show_packet.c
LIBOBJ = $(LIBSRC:%.c=%.o)

all: example-635

example-635: 635/example-635.o $(LIBOBJ)
	$(CC) $(LDFLAGS) $(LIBOBJ) 635/example-635.o -o sfpdispctl

clean:
	rm -f $(LIBOBJ) 635/example-635.o sfpdispctl
