Artifact 92a1bc0dd9fb6a94ea5436d074d4bbae6f2f47eb0591b69e853eb51ac0fe86fd:
- File
utils/Makefile
— part of check-in
[77d211a25a]
at
2023-04-11 19:20:31
on branch trunk
— Add utils/ofatalkcfg
This is a utility to configure AppleTalk on a network interface.
For now, this is not built by default if AppleTalk sockets are
available, as it is still in an early state. (user: js, size: 750) [annotate] [blame] [check-ins using]
include ../extra.mk SUBDIRS += ${OBJFW_NEW} \ ${OFARC} \ ${OFATALKCFG} \ ${OFDNS} \ ${OFHASH} \ ${OFHTTP} 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