diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-06 18:39:21 -0400 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2023-03-06 18:40:09 -0400 |
commit | 9ab79683d722987d34fd6da194958284ca805e23 (patch) | |
tree | c46fe3da1c1681b04cb9bb5483b86bc86bc475e3 /Makefile | |
parent | 1de4d06c2211bd19b2833f9ea684ee1126047950 (diff) |
Makefile: Use `FILE_UNIQUE_CFLAGS` for file specific flags, rather than
appending to `C{,XX}FLAGS`
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ CXXFLAGS := $(CFLAGS_BASE) -Cpp_exceptions off -RTTI off include obj_files.mk -$(BUILD_DIR)/src/pso/TProtocol.o: CXXFLAGS += -inline none +$(BUILD_DIR)/src/pso/TProtocol.o: FILE_UNIQUE_CFLAGS := -inline none ALL_DIRS := $(sort $(dir $(O_FILES))) |