Overview
| Comment: | Rename "make tarball" to "make release" |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
111d28cc65b6dbfae83a1f027a28c0b0 |
| User & Date: | js on 2020-09-27 01:01:53 |
| Other Links: | manifest | tags |
Context
|
2020-09-27
| ||
| 01:56 | Fix compiling for old Apple runtime (check-in: 877616edaf user: js tags: trunk) | |
| 01:01 | Rename "make tarball" to "make release" (check-in: 111d28cc65 user: js tags: trunk) | |
| 01:00 | Don't assume arc4random_buf if we have arc4random (check-in: 9aa85c25b5 user: js tags: trunk) | |
Changes
Modified Makefile from [4fc78820e4] to [d58557a5a6].
| ︙ | ︙ | |||
8 9 10 11 12 13 14 | config.h \ config.log \ config.status \ extra.mk include buildsys.mk | | | | 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 release
utils tests: src
docs:
rm -fr docs
doxygen >/dev/null
release: 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 '.cirrus*,.fossil*,.git*,.travis*' | \
ofarc -ttgz -xq -
cp configure config.h.in objfw-${PACKAGE_VERSION}/
|
| ︙ | ︙ |