view src/Makefile @ 13:7702bb8a8216

Add transactional delay in lwwire_write() This value could be smaller, but some laggy usb uarts work better at 50us.
author Brett Gordon
date Tue, 22 Nov 2016 17:27:59 -0500
parents f8226a33698d
children
line wrap: on
line source

CFLAGS += -Wall
LDLIBS += -ldl -rdynamic

all: lwwire lwwire-serial lwwire-pingpong.so lwwire-packet.so

%.so: %.c
	$(CC) $(CPPFLAGS) $(CFLAGS) -fPIC -shared -o $@ $<