diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-03-26 10:26:10 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2021-03-27 07:44:40 +0200 |
commit | 97575a239b8f4d87a8f7ad5bb324c8e71c02d4d9 (patch) | |
tree | c2b5e5de748c9065ef4243e03761ad4afbe9a36b /src/makefile | |
parent | makefile: make makefile recursive (diff) | |
download | kernel.cpp-97575a239b8f4d87a8f7ad5bb324c8e71c02d4d9.tar.xz |
clang-tidy fixes
Diffstat (limited to 'src/makefile')
-rw-r--r-- | src/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile index 96507ce..1d85f4b 100644 --- a/src/makefile +++ b/src/makefile @@ -41,7 +41,7 @@ $(CXX_OBJ) : $(OBJ_DIR)/%.o : %.cc @$(CXX) -target $(TARGET) $(CXX_FLAGS) $(CXX_INCLUDE) -MMD -MJ$(subst .o,.json,$@) -c $< -o $@ $(OBJ_DIR)/glitch.elf: $(autogen) $(AS_OBJ) $(CXX_OBJ) linker.ld - @echo " LD $@" + @echo " LD $(@F)" @$(LD) $(LD_FLAGS) -o $@ $(AS_OBJ) $(CXX_OBJ) -lk -ld # constexpr tests |