From feed14ce8f8d78274d42a5bcd74b071a925bdc68 Mon Sep 17 00:00:00 2001 From: luming Date: Sat, 11 Jan 2020 10:53:22 +0800 Subject: [PATCH] Fix issuse of parameter position error. the newly compiler don't support that. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 2f88542..0d1b3b8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -19,7 +19,7 @@ CC=c99 all: opuscomment ; opuscomment: $(OBJS) - $(CC) -o opuscomment $(DEFAULT_MACROS) $(CFLAGS) $(LDFLAGS) $(LIBS) $(OBJS) + $(CC) $(CFLAGS) $(DEFAULT_MACROS) $(LDFLAGS) $(OBJS) $(LIBS) -o opuscomment .SUFFIXES: .SUFFIXES: .c .o