From 114db717115f2bffd4c00c460d0cc566b92213c0 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Mon, 26 Feb 2018 21:39:59 +1100 Subject: [PATCH] Updated Makefile --- Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 08ecf113..aec0a7bb 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,11 @@ -all: - make -f Makefile.nx - make -f Makefile.pc +nx: + $(MAKE) -f Makefile.nx + +pc: + $(MAKE) -f Makefile.pc + +all: nx pc clean: - make -f Makefile.pc clean - make -f Makefile.nx clean + $(MAKE) -f Makefile.pc clean + $(MAKE) -f Makefile.nx clean \ No newline at end of file