Linux.mk 605 B

12345678910111213
  1. ifeq ($(_THEOS_PLATFORM_LOADED),)
  2. _THEOS_PLATFORM_LOADED := 1
  3. THEOS_PLATFORM_NAME := linux
  4. _THEOS_PLATFORM_DEFAULT_TARGET := iphone
  5. _THEOS_PLATFORM_DU_EXCLUDE := --exclude
  6. _THEOS_PLATFORM_MD5SUM := md5sum
  7. # TODO: Figure out if hardcoding "/iphone/" in _THEOS_PLATFORM_LIPO's path is a good idea or not
  8. _THEOS_PLATFORM_LIPO = $(THEOS)/toolchain/$(THEOS_PLATFORM_NAME)/iphone/bin/armv7-apple-darwin11-lipo
  9. # TODO: Find some better way to determine _THEOS_PLATFORM_SHOW_IN_FILE_MANAGER, as not all desktop environments use Nautilus as the file manager
  10. _THEOS_PLATFORM_SHOW_IN_FILE_MANAGER := nautilus
  11. endif