-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get rid of the race condition on WSL
- Loading branch information
Showing
3 changed files
with
43 additions
and
15 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
TARGET = ark150addoninstaller | ||
OBJS = \ | ||
pspbtcnf_game.h \ | ||
reboot150.h \ | ||
systemctrl150.h \ | ||
tmctrl150.h \ | ||
main.o \ | ||
pspDecrypt.o \ | ||
pspPSAR.o \ | ||
|
||
CFLAGS = -std=c99 -Os -G0 -Wall | ||
INCDIR = $(PSPSDK)/include $(ARKROOT)/common/include | ||
|
||
LIBS = -lpspkubridge -lpsppower | ||
|
||
CXXFLAGS = $(CFLAGS) | ||
ASFLAGS = $(CFLAGS) | ||
LDFLAGS = -L $(ARKROOT)/libs | ||
BUILD_PRX = 1 | ||
PSP_EBOOT_ICON = | ||
PSP_EBOOT_TITLE += ARK 150 Addon Installer | ||
|
||
EXTRA_TARGETS = EBOOT.PBP | ||
|
||
PSP_FW_VERSION = 660 | ||
|
||
all: $(TARGET).prx | ||
|
||
pspbtcnf_game.h: | ||
$(Q)bin2c ../btcnf/pspbtcnf_game.txt pspbtcnf_game.h pspbtcnf_game | ||
|
||
reboot150.h: | ||
$(Q)bin2c $(ARKROOT)/extras/150kernel/reboot150/reboot150.prx reboot150.h reboot150 | ||
|
||
systemctrl150.h: | ||
$(Q)bin2c $(ARKROOT)/extras/150kernel/systemctrl150/systemctrl150.prx systemctrl150.h systemctrl150 | ||
|
||
tmctrl150.h: | ||
$(Q)bin2c $(ARKROOT)/extras/150kernel/tmctrl150/tmctrl150.prx tmctrl150.h tmctrl150 | ||
|
||
PSPSDK=$(shell psp-config --pspsdk-path) | ||
include $(PSPSDK)/lib/build.mak |