1
0
Fork 0

Compare commits

...

1 Commits

Author SHA1 Message Date
wangqr f4cc905c69 Use target name without directory in $*_OBJ macro
Fix Aegisub/Aegisub#171
2020-02-22 12:34:36 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ POST_FLAGS = $($@_FLAGS) -c -o $@ $<
# Libraries contain all object files they depend on (but they may depend on other files)
# Not using libtool on OS X because it has an unsilenceable warning about a
# compatibility issue with BSD 4.3 (wtf)
lib%.a: $$($$*_OBJ)
lib%.a: $$($$(*F)_OBJ)
@$(BIN_MKDIR_P) $(dir $@)
$(BIN_AR) cru $@ $(filter %.o,$^)
$(BIN_RANLIB) $@