Fix core.tup for raw archives

This commit is contained in:
Ehmry - 2019-03-01 11:31:23 +01:00
parent cb1bc31626
commit 41026e543d
2 changed files with 5 additions and 4 deletions

View File

@ -16,10 +16,10 @@ CFLAGS += -D__LIBRETRO__
: foreach $(SOURCES_C) |> !libretro_cc |> {libretro_objs}
: foreach $(SOURCES_CXX) |> !libretro_cxx |> {libretro_objs}
: {libretro_objs} |> !libretro_core_link |> {binary}
: {binary} |> !strip_to_depot |> {depot_bin}
: {libretro_objs} |> !libretro_core_link |> libretro.so
: libretro.so |> !strip_to_depot |> {binary}
: archives | {depot_bin} |> !archives_to_depot |> {package}
: archives | libretro.so |> !archives_to_depot |> {package}
: runtime |> !runtime_to_depot |> {package}
ifdef DEPOT_KEY

View File

@ -13,5 +13,6 @@ include $(LIBRETRO_CORE_INCLUDE)
: $(CORE_DIR)/DiskImage/Oberon-2019-01-21.dsk |> !raw_to_depot |> {raw}
ifdef DEPOT_KEY
: {raw} |> !depot_raw_tarball |> {tarballs}
: {raw} |> !depot_raw_tarball |> {raw_tar}
: {raw_tar} |> !public_signature |>
endif