From 0bf363087e002d86157b869f5330a961ec8d3096 Mon Sep 17 00:00:00 2001 From: Jonathan Moallem Date: Tue, 1 Dec 2020 11:46:59 +1100 Subject: [PATCH] Renamed default run target to all --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 87dbff3..3fb79f9 100644 --- a/Makefile +++ b/Makefile @@ -35,13 +35,13 @@ ifeq ($(CXX),) CXX = $(compiler) endif +# Lists phony targets for Makefile +.PHONY: all setup submodules compile execute clean + # Default target, compiles, executes and cleans -run: compile execute clean +all: compile execute clean -# Lists phony targets for Make compile -.PHONY: run setup submodules compile execute clean - -# Sets up the project for compiling, creates libs and includes +# Sets up the project for compiling, generates includes and libs setup: include lib # Pull and update the the build submodules