mirror of
https://github.com/encounter/cpp3ds.git
synced 2026-03-30 11:04:22 -07:00
14 lines
335 B
Bash
14 lines
335 B
Bash
#!/bin/sh
|
|
set -ex
|
|
|
|
# Copy all files needed in cpp3ds archive
|
|
mkdir -p $CPP3DS/bin/
|
|
cp $DEVKITARM/bin/makerom $CPP3DS/bin/
|
|
cp $DEVKITARM/bin/3dsxtool $CPP3DS/bin/
|
|
cp $DEVKITARM/bin/bannertool $CPP3DS/bin/
|
|
cp $DEVKITARM/bin/nihstro-assemble $CPP3DS/bin/
|
|
cp -r $PORTLIBS/lib/ $CPP3DS
|
|
cp -r $PORTLIBS/include/ $CPP3DS
|
|
|
|
tar -cJvf $1 cpp3ds
|