Files
tqftpserv/Makefile
Bjorn Andersson e4894436dd tqftpserv: Initial prototype implementation
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>
2018-06-29 15:57:40 -07:00

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)