mirror of
https://github.com/linux-msm/qmic.git
synced 2024-11-23 17:54:01 +08:00
241fff829e
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>
18 lines
207 B
Makefile
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)
|
|
|