mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
15 lines
244 B
Makefile
15 lines
244 B
Makefile
all: elf2nso build_pfs0
|
|
|
|
build_pfs0: build_pfs0.c
|
|
gcc $(CFLAGS) -o $@ $^
|
|
|
|
elf2nso: elf2nso.c sha256.c
|
|
gcc $(CFLAGS) -o $@ $^ -llz4
|
|
|
|
install: all
|
|
cp build_pfs0 $(DEVKITA64)/bin/
|
|
cp elf2nso $(DEVKITA64)/bin/
|
|
|
|
clean:
|
|
rm -f elf2nso build_pfs0
|