aboutsummaryrefslogtreecommitdiff
path: root/examples/makefile
diff options
context:
space:
mode:
authorJohn Wilbert M. Villamor <lameguy64@gmail.com>2019-04-06 10:11:07 +0800
committerJohn Wilbert M. Villamor <lameguy64@gmail.com>2019-04-06 10:11:07 +0800
commitf3e040230772f978540a71aea43dfde200992922 (patch)
treebd8ca31b72dd01e24980b073854e263589530f56 /examples/makefile
downloadpsn00bsdk-f3e040230772f978540a71aea43dfde200992922.tar.gz
First commit
Diffstat (limited to 'examples/makefile')
-rw-r--r--examples/makefile16
1 files changed, 16 insertions, 0 deletions
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)