From c40f400f6ab879e08d54de753aabc987fd6ba07a Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Tue, 5 Mar 2024 18:46:44 -0500 Subject: Added a simple shell, jsh --- makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) mode change 100644 => 100755 makefile (limited to 'makefile') diff --git a/makefile b/makefile old mode 100644 new mode 100755 index b35e42a..0185b2e --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -export (CC) = clang +export (CC) = gcc #TOPTARGETS := all SUBDIRS := src export PROROOT := ${CURDIR} @@ -8,7 +8,9 @@ export PROROOT := ${CURDIR} $(SUBDIRS): $(MAKE) -C $@ $(MAKECMDGOALS) -all: $(SUBRIRS) +all: build install + +build: $(SUBDIRS) install: @rm -r /opt/ProjectMustang @@ -17,4 +19,4 @@ install: clean: $(SUBDIRS) @rm $(wildcard build/bin/*) -.PHONY: install all clean $(TOPTARGETS) $(SUBDIRS) +.PHONY: install build all clean $(TOPTARGETS) $(SUBDIRS) -- cgit v1.2.3