mirror of
https://github.com/OpenMathLib/OpenBLAS
synced 2026-05-31 00:45:48 +08:00
This reverts commit 7eab365219 and fixes
the pattern rule requirement "% must match a non-empty stem" to match at
least '.' in the pattern.
This whole file could actually be substantially simplified to just:
%.$(SUFFIX): %.c
$(CC) $(CFLAGS) -c $< -o $(@F)
%.$(PSUFFIX): %.c
$(CC) $(PFLAGS) -c $< -o $(@F)
if desired to entirely avoid the copy-paste duplication, but the net
effect is the same.