Skip to content

Commit

Permalink
Fix issuse of parameter position error.
Browse files Browse the repository at this point in the history
the newly compiler don't support that.
  • Loading branch information
luming committed Jan 11, 2020
1 parent a4fee1d commit feed14c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit feed14c

Please sign in to comment.