diff options
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} |