mirror of
https://github.com/linux-msm/tqftpserv.git
synced 2026-02-25 13:12:17 -08:00
Introduce a prototype of the tqftpserv, a server implementing trivial file transfer protocol over AF_QIPCRTR. Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
18 lines
267 B
Makefile
18 lines
267 B
Makefile
TQFTPSERV := tqftpserv
|
|
|
|
CFLAGS := -Wall -g -O2
|
|
LDFLAGS := -lqrtr
|
|
|
|
SRCS := tqftpserv.c
|
|
|
|
OBJS := $(SRCS:.c=.o)
|
|
|
|
$(TQFTPSERV): $(OBJS)
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
|
|
install: $(TQFTPSERV)
|
|
install -D -m 755 $< $(DESTDIR)$(prefix)/bin/$<
|
|
|
|
clean:
|
|
rm -f $(TQFTPSERV) $(OBJS)
|