diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-03-05 18:46:44 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-03-05 18:46:44 -0500 |
| commit | c40f400f6ab879e08d54de753aabc987fd6ba07a (patch) | |
| tree | 295f95070362d14d987638b558ad6bb1ba2415e2 /makefile | |
| parent | e32262d86c90e2ac73b2c38a47a1bb6b60935098 (diff) | |
Added a simple shell, jsh
Diffstat (limited to 'makefile')
| -rwxr-xr-x[-rw-r--r--] | makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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) |
