mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-30 06:48:38 +01:00
16 lines
231 B
Makefile
16 lines
231 B
Makefile
all: elf2nso build_pfs0
|
|
|
|
build_pfs0: build_pfs0.c
|
|
gcc -o $@ $^
|
|
|
|
elf2nso: elf2nso.c sha256.c
|
|
gcc -o $@ $^ -llz4
|
|
|
|
install: all
|
|
cp build_pfs0 ${DEVKITA64}/bin/
|
|
cp elf2nso ${DEVKITA64}/bin/
|
|
|
|
clean:
|
|
rm -f elf2nso
|
|
rm -f build_pfs0
|