Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 6f18211

Browse files
committed
Fix Makefile
Place linker flags at the end.
1 parent 54971c4 commit 6f18211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ icc:
3232
$(MAKE) CC=icc CFLAGS='-w2 $(OPT) -std=gnu99 -O2 -ipo' LDFLAG1='-static -ipo -pthread' bonanza
3333

3434
bonanza : $(OBJS)
35-
$(CC) $(LDFLAG1) -o bonanza $(OBJS) $(LDFLAG2)
35+
$(CC) -o bonanza $(OBJS) $(LDFLAG1) $(LDFLAG2)
3636

3737
$(OBJS) : shogi.h param.h
3838

0 commit comments

Comments
 (0)