diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2021-01-29 14:11:27 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2021-01-29 14:20:03 -0500 |
commit | 6251c29f126b30f798a9bf909f9f66a84a20c334 (patch) | |
tree | c1b21ebe95ac13eea17a27ee290392c682c533a3 /Makefile | |
parent | 3ce57045c9e83b8475b0f69e2110b3d04c08d6ec (diff) | |
download | bfs-6251c29f126b30f798a9bf909f9f66a84a20c334.tar.xz |
Makefile: Give LTO linking access to the jobserver
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -165,7 +165,7 @@ tests/trie: trie.o tests/trie.o tests/xtimegm: time.o tests/xtimegm.o $(BIN_GOALS): - $(CC) $(ALL_LDFLAGS) $^ $(ALL_LDLIBS) -o $@ + +$(CC) $(ALL_LDFLAGS) $^ $(ALL_LDLIBS) -o $@ %.o: %.c .flags $(CC) $(ALL_CFLAGS) -c $< -o $@ |