Skip to content

makesettings

Jason Perkins edited this page May 11, 2015 · 3 revisions

The makesettings function adds arbitrary GNU make markup to a generated Makefile.

makesettings { "values" }

Parameters

values specifies one or more lines to be written to the Makefile.

Applies To

Configurations. Only used for makefile generating actions.

Availability

Premake 5.0 or later.

Examples

makesettings [[
  ifeq ($(strip $(DEVKITPPC)),)
    $(error "DEVKITPPC environment variable is not set")'
  endif
  include $(DEVKITPPC)/wii_rules'
]]
Clone this wiki locally