libretro / dosbox-libretro

Port of DOSBox (upstream) to the libretro API.
GNU General Public License v2.0
61 stars 40 forks source link

creating make file for batocera on arm #109

Open dmschwartzii opened 5 years ago

dmschwartzii commented 5 years ago

Would anyone here be interested in helping with the creation of a make file for batocera on arm? They all ready have this on x86 and x64 but it seems arms is a little more work.

dmschwartzii commented 5 years ago

@twinaphex

dmschwartzii commented 5 years ago

Example of current file: #

DOSBOX

# ################################################################################

Version.: Commits on Sep 4, 2018

LIBRETRO_DOSBOX_VERSION = d87d7cc43f53af83c3cf42e0a3b701cfe3639cd0 LIBRETRO_DOSBOX_SITE = $(call github,libretro,dosbox-libretro,$(LIBRETRO_DOSBOX_VERSION))

define LIBRETRO_DOSBOX_BUILD_CMDS CFLAGS="$(TARGET_CFLAGS)" CXXFLAGS="$(TARGET_CXXFLAGS)" \ $(MAKE) CXX="$(TARGET_CXX)" CC="$(TARGET_CC)" LD="$(TARGET_LD)" RANLIB="$(TARGET_RANLIB)" AR="$(TARGET_AR)" -C $(@D)/ -f Makefile.libretro platform="$(LIBRETRO_PLATFORM)" endef

define LIBRETRO_DOSBOX_INSTALL_TARGET_CMDS $(INSTALL) -D $(@D)/dosbox_libretro.so \ $(TARGET_DIR)/usr/lib/libretro/dosbox_libretro.so endef

$(eval $(generic-package))