Overview
| Comment: | tests: Add target to generate tests.rpx |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | wii-u |
| Files: | files | file ages | folders |
| SHA3-256: |
834ddf94fd363915ba702eb0318f3810 |
| User & Date: | js on 2022-07-15 18:14:20 |
| Other Links: | branch diff | manifest | tags |
Context
|
2022-07-17
| ||
| 16:29 | tests: Clean tests.rpx (check-in: e08ce15304 user: js tags: wii-u) | |
|
2022-07-15
| ||
| 18:14 | tests: Add target to generate tests.rpx (check-in: 834ddf94fd user: js tags: wii-u) | |
| 18:09 | Merge trunk into branch "wii-u" (check-in: a2973418de user: js tags: wii-u) | |
Changes
Modified tests/Makefile from [bb692e21b0] to [4ac7dc4b9c].
| ︙ | ︙ | |||
203 204 205 206 207 208 209 210 211 212 213 214 215 |
mkdir -p nds-data
cp testfile.bin testfile.txt testfile.ini serialization.xml nds-data
ndstool -c $@ -9 $< -d nds-data
rm -fr nds-data
${PROG_NOINST}.3dsx: ${PROG_NOINST}
3dsxtool $< $@
CPPFLAGS += -I../src -I../src/exceptions -I../src/runtime -I.. -DSTDOUT
OBJCFLAGS_RuntimeARCTests.m = -fobjc-arc -fobjc-arc-exceptions
LIBS := ${TESTS_LIBS} ${LIBS}
LDFLAGS += ${MAP_LDFLAGS}
LD = ${OBJC}
| > > > | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
mkdir -p nds-data
cp testfile.bin testfile.txt testfile.ini serialization.xml nds-data
ndstool -c $@ -9 $< -d nds-data
rm -fr nds-data
${PROG_NOINST}.3dsx: ${PROG_NOINST}
3dsxtool $< $@
${PROG_NOINST}.rpx: ${PROG_NOINST}
elf2rpl $< $@
CPPFLAGS += -I../src -I../src/exceptions -I../src/runtime -I.. -DSTDOUT
OBJCFLAGS_RuntimeARCTests.m = -fobjc-arc -fobjc-arc-exceptions
LIBS := ${TESTS_LIBS} ${LIBS}
LDFLAGS += ${MAP_LDFLAGS}
LD = ${OBJC}
|