Logo
Explore Help
Sign In
linuxmsm/pd-mapper
0
0
Fork 0
You've already forked pd-mapper
mirror of https://github.com/linux-msm/pd-mapper.git synced 2026-02-25 13:12:10 -08:00
Code Issues Packages Projects Releases Wiki Activity
Files
json
pd-mapper/Makefile

20 lines
301 B
Makefile
Raw Permalink Normal View History

pd-mapper: Initial implementation This implements the minimum scope of pd-mapper in order to trigger loading of wlan firmware on SDM845. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2018-06-29 15:47:57 -07:00
PD_MAPPER := pd-mapper
CFLAGS := -Wall -g -O2
LDFLAGS := -lqrtr
SRCS := pd-mapper.c \
json: Introduce JSON parser Mappings are stored in JSON structured files, introduce a JSON parser to load these. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2019-04-26 00:12:51 -07:00
json.c \
pd-mapper: Initial implementation This implements the minimum scope of pd-mapper in order to trigger loading of wlan firmware on SDM845. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
2018-06-29 15:47:57 -07:00
servreg_loc.c
OBJS := $(SRCS:.c=.o)
$(PD_MAPPER): $(OBJS)
$(CC) -o $@ $^ $(LDFLAGS)
install: $(PD_MAPPER)
install -D -m 755 $< $(DESTDIR)$(prefix)/bin/$<
clean:
rm -f $(PD_MAPPER) $(OBJS)
Reference in New Issue Copy Permalink
Powered by Gitea Page: 49ms Template: 5ms
English
English
Licenses API