Overview
| Comment: | Makefile: Add docs target |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2dd5d682ebe72431603b6878b1d7585b |
| User & Date: | js on 2020-06-21 22:12:50 |
| Other Links: | manifest | tags |
Context
|
2020-06-24
| ||
| 17:17 | ObjFW.h: Add missing imports (check-in: 6f1f036339 user: js tags: trunk) | |
|
2020-06-21
| ||
| 22:15 | Merge trunk into branch "amiga-library" (check-in: 39641794dd user: js tags: amiga-library) | |
| 22:12 | Makefile: Add docs target (check-in: 2dd5d682eb user: js tags: trunk) | |
| 22:08 | Move parameters for of_scrypt() to a struct (check-in: 63f5276b33 user: js tags: trunk) | |
Changes
Modified Makefile from [c0716d54d0] to [4ae8b8a509].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 15 16 | config.h \ config.log \ config.status \ extra.mk include buildsys.mk utils tests: src | > > > > > > | | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
config.h \
config.log \
config.status \
extra.mk
include buildsys.mk
.PHONY: docs tarball
utils tests: src
docs:
rm -fr docs
doxygen >/dev/null
tarball: docs
echo "Generating tarball for version ${PACKAGE_VERSION}..."
rm -fr objfw-${PACKAGE_VERSION} objfw-${PACKAGE_VERSION}.tar \
objfw-${PACKAGE_VERSION}.tar.gz
fossil tarball --name objfw-${PACKAGE_VERSION} current - \
--exclude '.fossil-settings/*,.gitignore,.travis.yml' | \
ofarc -ttgz -xq -
cp configure config.h.in objfw-${PACKAGE_VERSION}/
|
| ︙ | ︙ |