Files
cdba/Makefile
Bjorn Andersson 4efcfb4456 bad: Add initial cdba backend implementation
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2018-03-12 17:43:55 -07:00

18 lines
255 B
Makefile

CDBA := bad
.PHONY: all
all: $(CDBA)
CFLAGS := -Wall -g -O2
LDFLAGS := -ludev
CDBA_SRCS := bad.c cdb_assist.c circ_buf.c device.c fastboot.c
CDBA_OBJS := $(CDBA_SRCS:.c=.o)
$(CDBA): $(CDBA_OBJS)
$(CC) $(LDFLAGS) -o $@ $^
clean:
rm -f $(CDBA_OBJS)