mirror of
https://github.com/linux-msm/rmtfs.git
synced 2025-12-24 14:06:25 +01:00
The rmtfs tool pushlishes the two QMI services "rmtfs" and "rfsa", and implements the necessary requests for rmtfs that's needed to boot the modem subsystem on a Qualcomm based board. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
18 lines
264 B
Makefile
18 lines
264 B
Makefile
OUT := rmtfs
|
|
|
|
CFLAGS := -Wall -g -I../qrtr/lib
|
|
LDFLAGS := -L../qrtr -lqrtr
|
|
|
|
SRCS := qmi_rmtfs.c qmi_tlv.c rmtfs.c sharedmem.c storage.c util.c
|
|
OBJS := $(SRCS:.c=.o)
|
|
|
|
$(OUT): $(OBJS)
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
|
|
test: $(OUT)
|
|
./$(OUT)
|
|
|
|
clean:
|
|
rm -f $(OUT) $(OBJS)
|
|
|