1
0
Fork 0

Use target name without directory in $*_OBJ macro

Fix Aegisub/Aegisub#171
This commit is contained in:
wangqr 2020-02-17 14:42:07 +08:00
parent 6f546951b4
commit f4cc905c69
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) $@