diff options
| author | Ada Christine <adachristine18@gmail.com> | 2021-03-29 01:41:50 +0000 |
|---|---|---|
| committer | Ada Christine <adachristine18@gmail.com> | 2021-03-29 01:41:50 +0000 |
| commit | 42c6af83ec7e26983f1ecdefc81ea481a2354cb4 (patch) | |
| tree | a096824a181eff4874e7840d148f3e5a06e3a5df /rules.mk | |
| parent | 56ec6c782455f7d8e4560d30ad6d2c3e1cd2738f (diff) | |
don't echo command spam
move common files to new source
add VPATH to loader and kernel makefiles for common source
Diffstat (limited to 'rules.mk')
| -rw-r--r-- | rules.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -19,15 +19,15 @@ COMPILE.info = $(info $$(CC) $@) %.debug.os: %.os $(OBJCOPY) --only-keep-debug $< $@ - $(OBJCOPY) --strip-debug $< + @$(OBJCOPY) --strip-debug $< %.o: %.c $(COMPILE.info) - $(COMPILE.c) -MMD -MP + @$(COMPILE.c) -MMD -MP %.o: %.cpp $(COMPILE.info) - $(COMPILE.cpp) -MMD -MP + @$(COMPILE.cpp) -MMD -MP clean: $(info $$(RM) $(CLEANLIST)) |
