15 lines
323 B
Makefile
15 lines
323 B
Makefile
CD_OUTPUT ?= $(REGION)/$(ARTIFACT).bin
|
|
|
|
$(CD_OUTPUT): always
|
|
@mkdir -p $(REGION)
|
|
psxcdgen_ex --list $(REGION)/$(ARTIFACT).lba -o $(REGION)/$(ARTIFACT) psx bin-cue Config.xml
|
|
|
|
all: $(CD_OUTPUT)
|
|
|
|
clean:
|
|
rm -fr $(REGION)/*.bin
|
|
rm -fr $(REGION)/*.cue
|
|
rm -fr $(REGION)/*.lba
|
|
rm -fr $(REGION)/*.pkg
|
|
|
|
always: ; |