mirror of
https://github.com/libretro/RetroArch
synced 2025-01-01 12:11:47 +00:00
20 lines
303 B
Makefile
20 lines
303 B
Makefile
|
# Remove the line below, if you want to disable silent mode
|
||
|
#.SILENT:
|
||
|
|
||
|
all: lib/libcdvdfs.a lib/cdvd.irx
|
||
|
|
||
|
lib:
|
||
|
mkdir -p $@
|
||
|
|
||
|
clean:
|
||
|
$(MAKE) -C ee clean
|
||
|
$(MAKE) -C iop clean
|
||
|
|
||
|
lib/cdvd.irx: iop | lib
|
||
|
@echo Building IRX
|
||
|
$(MAKE) -C $<
|
||
|
|
||
|
lib/libcdvdfs.a: ee | lib
|
||
|
@echo Building EE client
|
||
|
$(MAKE) -C $<
|