mosquitto/apps/mosquitto_passwd/Makefile
2024-06-12 21:26:25 +01:00

51 lines
981 B
Makefile

R=../..
include ${R}/config.mk
LOCAL_CFLAGS+=
LOCAL_CPPFLAGS+=-I${R}/lib
LOCAL_LDFLAGS+=
LOCAL_LDADD+=-lcrypto ${LIBMOSQ_COMMON}
.PHONY: all install uninstall clean reallyclean
OBJS= \
mosquitto_passwd.o \
get_password.o \
OBJS_EXTERNAL=
ifeq ($(WITH_TLS),yes)
ifeq ($(WITH_FUZZING),yes)
all : mosquitto_passwd.a
else
all : mosquitto_passwd
endif
else
all:
endif
mosquitto_passwd : ${OBJS} ${OBJS_EXTERNAL}
${CROSS_COMPILE}${CC} ${LOCAL_LDFLAGS} $^ -o $@ $(LOCAL_LDADD)
mosquitto_passwd.a : ${OBJS} ${OBJS_EXTERNAL}
${CROSS_COMPILE}$(AR) cr $@ $^
${OBJS} : %.o: %.c
${CROSS_COMPILE}${CC} $(LOCAL_CPPFLAGS) $(LOCAL_CFLAGS) -c $< -o $@
install : all
ifeq ($(WITH_TLS),yes)
$(INSTALL) -d "${DESTDIR}$(prefix)/bin"
$(INSTALL) ${STRIP_OPTS} mosquitto_passwd "${DESTDIR}${prefix}/bin/mosquitto_passwd"
endif
uninstall :
-rm -f "${DESTDIR}${prefix}/bin/mosquitto_passwd"
clean :
-rm -f *.o *.a mosquitto_passwd *.gcda *.gcno
reallyclean : clean
-rm -rf *.orig *.db