Differences From Artifact [521b7f89ce]:
- File
utils/Makefile
— part of check-in
[d13292673e]
at
2020-02-18 00:48:27
on branch trunk
— Add optional completions for the fish shell
These can be enabled with --enable-fish-completions. (user: js, size: 718) [annotate] [blame] [check-ins using] [more...]
To Artifact [4d169fd4a2]:
- File
utils/Makefile
— part of check-in
[1483709ab2]
at
2022-08-01 21:20:54
on branch trunk
— Add support for embedding files into binaries
Embedded files are available via the objfw-embedded: URL scheme. (user: js, size: 730) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 |
include ../extra.mk
SUBDIRS += ${OFARC} \
${OFDNS} \
${OFHASH} \
${OFHTTP} \
completions
include ../buildsys.mk
DISTCLEAN = objfw-config
install-extra: objfw-config objfw-compile objfw-new
| | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
include ../extra.mk
SUBDIRS += ${OFARC} \
${OFDNS} \
${OFHASH} \
${OFHTTP} \
completions
include ../buildsys.mk
DISTCLEAN = objfw-config
install-extra: objfw-config objfw-compile objfw-new
for i in objfw-config objfw-compile objfw-embed objfw-new; 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
|
| ︙ | ︙ |