ObjFW  Check-in [9842ae0680]

Overview
Comment:Fix `make check` with nbmake
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | objfwtest
Files: files | file ages | folders
SHA3-256: 9842ae06800706c342e12d0c5a1b265c6592ba9725e13ae27f0dc3c5e78cdd23
User & Date: js on 2024-02-14 00:47:44
Other Links: branch diff | manifest | tags
Context
2024-02-14
22:28
ObjFWTest: Implement output on Wii check-in: 87d92e4803 user: js tags: objfwtest
00:47
Fix `make check` with nbmake check-in: 9842ae0680 user: js tags: objfwtest
00:41
Migrate OFDDPSocketTests to ObjFWTest check-in: 572bcb3d8b user: js tags: objfwtest
Changes

Modified Makefile from [3b78119a83] to [81e989ea4a].

13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
include buildsys.mk

.PHONY: check docs release

utils tests new_tests: src

check: tests new_tests
	cd tests && ${MAKE} -s run
	cd new_tests && ${MAKE} -s run

docs:
	rm -fr docs
	doxygen >/dev/null

release: docs
	echo "Generating tarball for version ${PACKAGE_VERSION}..."







|
|







13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
include buildsys.mk

.PHONY: check docs release

utils tests new_tests: src

check: tests new_tests
	${MAKE} -C tests -s run
	${MAKE} -C new_tests -s run

docs:
	rm -fr docs
	doxygen >/dev/null

release: docs
	echo "Generating tarball for version ${PACKAGE_VERSION}..."