resources: Moving "all" make target to default

Previously there was no default make target. This has been changed so
the default make target is now "all". That is, all the resources.

Change-Id: I7aaf7a13573d38da538fedb30c42bbe23dae205b
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5-resources/+/29300
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: Jason Lowe-Power <power.jg@gmail.com>
diff --git a/Makefile b/Makefile
index aaee287..f7dd781 100644
--- a/Makefile
+++ b/Makefile
@@ -56,6 +56,10 @@
 asmtest-bin         := $(asmtest-src)/bin
 asmtest-dist-dir    := $(output-dir)/test-progs/asmtest/bin
 
+# Default make --- Make all targets
+.PHONY: all
+all: riscv-tests insttests pthreads square asmtests
+
 # RISCV-Tests
 .PHONY: riscv-tests
 riscv-tests: $(riscv-benchmarks)
@@ -187,10 +191,7 @@
 	-make -C $(asmtest-src) clean
 	-rm -rf $(asmtest-dist-dir)
 
-# Global
-.PHONY: all
-all: riscv-tests insttests pthreads square asmtests
-
+# Clean
 .PHONY: clean
 clean: clean-riscv-tests clean-insttests clean-pthreads clean-square \
 	   clean-asmtests