From f3e040230772f978540a71aea43dfde200992922 Mon Sep 17 00:00:00 2001 From: "John Wilbert M. Villamor" Date: Sat, 6 Apr 2019 10:11:07 +0800 Subject: First commit --- examples/makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 examples/makefile (limited to 'examples/makefile') diff --git a/examples/makefile b/examples/makefile new file mode 100644 index 0000000..dda76ce --- /dev/null +++ b/examples/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 + +DIRS = balls gte n00bdemo + + +$(TOPTARGETS): $(DIRS) +$(DIRS): + @$(MAKE) -C $@ $(MAKECMDGOALS) + +clean: $(DIRS) + +.PHONY: $(TOPTARGETS) $(DIRS) -- cgit v1.2.3