Overview
| Comment: | utils: Properly uninstall objfw-embed |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
057802f12083d6522a09a0425c7e5a04 |
| User & Date: | js on 2022-08-07 13:32:25 |
| Other Links: | manifest | tags |
Context
|
2022-08-07
| ||
| 13:40 | tests: Don't copy testfile.bin & serialization.xml (check-in: 782a1d5775 user: js tags: trunk) | |
| 13:32 | utils: Properly uninstall objfw-embed (check-in: 057802f120 user: js tags: trunk) | |
| 13:31 | Add -[OFString stringByAppendingPathExtension:] (check-in: c258e7bfad user: js tags: trunk) | |
Changes
Modified utils/Makefile from [4d169fd4a2] to [ea1b93d204].
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 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
uninstall-extra:
for i in objfw-config objfw-compile objfw-embed objfw-new; 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
|