Differences From Artifact [ea1b93d204]:
- File utils/Makefile — part of check-in [057802f120] at 2022-08-07 13:32:25 on branch trunk — utils: Properly uninstall objfw-embed (user: js, size: 754) [annotate] [blame] [check-ins using]
To Artifact [b7affc6883]:
- File
utils/Makefile
— part of check-in
[18e40d7a45]
at
2022-08-07 20:43:40
on branch trunk
— Remove utils/objfw-new
This will be rewritten in ObjC. Due to Fossil limitations, a file cannot
be replaced with a directory in the same commit. (user: js, size: 724) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 |
include ../extra.mk
SUBDIRS += ${OFARC} \
${OFDNS} \
${OFHASH} \
${OFHTTP} \
completions
include ../buildsys.mk
DISTCLEAN = objfw-config
| | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
include ../extra.mk
SUBDIRS += ${OFARC} \
${OFDNS} \
${OFHASH} \
${OFHTTP} \
completions
include ../buildsys.mk
DISTCLEAN = objfw-config
install-extra: objfw-config objfw-compile objfw-embed
for i in objfw-config objfw-compile objfw-embed; do \
${INSTALL_STATUS}; \
if ${MKDIR_P} ${DESTDIR}${bindir} && ${INSTALL} -m 755 $$i ${DESTDIR}${bindir}/${BIN_PREFIX}$$i; then \
${INSTALL_OK}; \
else \
${INSTALL_FAILED}; \
fi \
done
uninstall-extra:
for i in objfw-config objfw-compile objfw-embed; do \
if test -f ${DESTDIR}${bindir}/${BIN_PREFIX}$$i; then \
if rm -f ${DESTDIR}${bindir}/${BIN_PREFIX}$$i; then \
${DELETE_OK}; \
else \
${DELETE_FAILED}; \
fi \
fi \
done
|