Overview
Comment: | Makefile: Fix wrong name for .oc file |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c256c8ae6e5446faeac368afcf7c55ea |
User & Date: | js on 2020-08-31 21:36:22 |
Other Links: | manifest | tags |
Context
2020-08-31
| ||
21:44 | Add .fossil-settings/ignore-glob check-in: 900c5d0895 user: js tags: trunk | |
21:36 | Makefile: Fix wrong name for .oc file check-in: c256c8ae6e user: js tags: trunk | |
21:33 | Rename project to ObjSQLite3 check-in: b821df3a30 user: js tags: trunk | |
Changes
Modified Makefile from [6e72bff737] to [9c67618733].
︙ | ︙ | |||
8 9 10 11 12 13 14 | config.status \ extra.mk include buildsys.mk include extra.mk install-extra: | | | | 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 | config.status \ extra.mk include buildsys.mk include extra.mk install-extra: i=ObjSQLite3.oc; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ ${INSTALL_STATUS}; \ if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \ ${INSTALL_OK}; \ else \ ${INSTALL_FAILED}; \ fi uninstall-extra: i=ObjSQLite3.oc; \ packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \ if test -f $$packagesdir/$$i; then \ if rm -f $$packagesdir/$$i; then \ ${DELETE_OK}; \ else \ ${DELETE_FAILED}; \ fi \ |
︙ | ︙ |