mirror of
https://github.com/switchbrew/switch-tools.git
synced 2025-06-28 00:12:39 +02:00
23 lines
695 B
Makefile
23 lines
695 B
Makefile
# Makefile.am -- Process this file with automake to produce Makefile.in
|
|
bin_PROGRAMS = elf2nso elf2nro build_pfs0 build_romfs nacptool nxlink
|
|
|
|
build_pfs0_SOURCES = src/build_pfs0.c src/types.h
|
|
|
|
build_romfs_SOURCES = src/build_romfs.c src/romfs.c src/romfs.h src/filepath.c src/filepath.h src/types.h
|
|
|
|
elf2nro_SOURCES = src/elf2nro.c src/elf64.h src/romfs.c src/filepath.c src/filepath.h src/romfs.h src/elf_common.h
|
|
|
|
elf2nso_SOURCES = src/elf2nso.c src/sha256.c src/sha256.h src/elf64.h src/elf_common.h
|
|
|
|
nacptool_SOURCES = src/nacptool.c
|
|
|
|
nxlink_SOURCES = src/nxlink.c
|
|
|
|
nxlink_CPPFLAGS = @ZLIB_CFLAGS@
|
|
|
|
elf2nso_LDADD = @LZ4_LIBS@
|
|
|
|
nxlink_LDADD = @ZLIB_LIBS@ @NET_LIBS@
|
|
|
|
EXTRA_DIST = autogen.sh
|