Artifact e5221f687bdd95accc626d979aa2067c3d046d47007824b855995bc20426a52f:
- File
utils/Makefile
— part of check-in
[c70b66a228]
at
2017-06-04 16:05:48
on branch trunk
— Add objfw-new
objfw-new creates new source files from templates.
For now, this only has the boilerplate for an empty class and an empty
application, but will be extended over time. (user: js, size: 685) [annotate] [blame] [check-ins using]
include ../extra.mk SUBDIRS += ${OFHASH} \ ${OFHTTP} \ ${OFZIP} include ../buildsys.mk DISTCLEAN = objfw-config install-extra: objfw-config objfw-compile objfw-new for i in objfw-config objfw-compile 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-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