RetroArch/ps2/libcdvd/Makefile
Francisco Javier Trujillo Mata da86549b8e Add libcdvd library
2019-03-15 20:19:14 +01:00

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 $<