diff options
Diffstat (limited to 'libpsn00b/makefile')
| -rw-r--r-- | libpsn00b/makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libpsn00b/makefile b/libpsn00b/makefile new file mode 100644 index 0000000..bcfc9a5 --- /dev/null +++ b/libpsn00b/makefile @@ -0,0 +1,16 @@ +# Run using make (Linux) or gmake (BSD) +# Part of the PSn00bSDK Project +# 2019 Lameguy64 / Meido-Tek Productions + +TOPTARGETS = all clean + +LIBDIRS = libc lzp psxgpu psxgte psxapi psxetc psxspu + + +$(TOPTARGETS): $(LIBDIRS) +$(LIBDIRS): + @$(MAKE) -C $@ $(MAKECMDGOALS) + +clean: $(LIBDIRS) + +.PHONY: $(TOPTARGETS) $(LIBDIRS) |
