Skip to content

Commit

Permalink
IGS and PADEMU enabled by default
Browse files Browse the repository at this point in the history
This makes the following makefile targets generate the same opl
configuration as the "make release" builds:
- make all
- make opl.elf
- make opl_stripped.elf
- make OPNPS2LD.ELF
  • Loading branch information
rickgaiser committed Jan 9, 2021
1 parent c3f9ab8 commit a81487b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ EXTRAVERSION = Beta
RTL ?= 0

#Enables/disables In Game Screenshot (IGS). NB: It depends on GSM and IGR to work
IGS ?= 0
IGS ?= 1

#Enables/disables pad emulator
PADEMU ?= 0
PADEMU ?= 1

#Enables/disables building of an edition of OPL that will support the DTL-T10000 (SDK v2.3+)
DTL_T10000 ?= 0
Expand Down Expand Up @@ -206,10 +206,7 @@ else
$(MAKE) $(EE_BIN)
endif

release:
echo "Building Open PS2 Loader $(OPL_VERSION)..."
echo "-Interface"
$(MAKE) IGS=1 PADEMU=1 $(EE_VPKD).ZIP
release: $(EE_VPKD).ZIP

debug:
$(MAKE) DEBUG=1 all
Expand Down

0 comments on commit a81487b

Please sign in to comment.