qmic/Makefile
Bjorn Andersson 241fff829e qmic: Initial basic implementation
This initial implementation is capable of generating encoder and decoder
accessors for messages with basic integers, strings, arrays and structs.

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2016-02-07 09:27:50 -08:00

18 lines
207 B
Makefile

OUT := qmic
CFLAGS := -Wall -g
LDFLAGS :=
SRCS := qmic.c qmi_message.c qmi_struct.c
OBJS := $(SRCS:.c=.o)
$(OUT): $(OBJS)
$(CC) $(LDFLAGS) -o $@ $^
test: $(OUT)
./$(OUT)
clean:
rm -f $(OUT) $(OBJS)