diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-10 13:40:15 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-10 13:40:15 +0100 |
| commit | d2f37b5965d5c122bbc0e86e0e91b0d631012325 (patch) | |
| tree | 888277f57ea7518d507a5df17b1c679e10f8aac9 /core | |
| parent | b6e7782be4a7e5d6e4b40787f0bb4e5c65e99520 (diff) | |
Make autobootstrap system
Diffstat (limited to 'core')
| -rw-r--r-- | core/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/Makefile b/core/Makefile index d8335b0..99e348d 100644 --- a/core/Makefile +++ b/core/Makefile @@ -8,8 +8,10 @@ options: @echo OBJ: ${OBJ} objects/%: %.c - -mkdir -p $$(dirname $@) - gcc $< -o $@ ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -Wno-int-conversion -g + @echo Building $< + @-mkdir -p $$(dirname $@) + @gcc $< -o $@ ../lib/slib.a -static -nostdlib -fno-stack-protector -Wno-implicit-function-declaration -fno-builtin -Wno-int-conversion -g clean: - rm ${OBJ} + @echo Cleaning Up Core + @rm ${OBJ} |