Skip to content

Commit

Permalink
Merge pull request #69 from joggee-fr/jg/lib-ldflags
Browse files Browse the repository at this point in the history
add missing LDFLAGS to library build
  • Loading branch information
todbot authored Jan 8, 2024
2 parents 2aefab1 + 7ad82b5 commit f7d5fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ blink1-tiny-server: $(OBJS) blink1-tiny-server-html server/blink1-tiny-server.c
$(CC) $(CFLAGS) $(OBJS) $(EXEFLAGS) ./server/mongoose/mongoose.o $(LIBS) server/blink1-tiny-server-html.o server/blink1-tiny-server.o -o blink1-tiny-server$(EXE) $(LDFLAGS)

$(LIBTARGET): $(OBJS)
$(CC) $(LIBFLAGS) $(CFLAGS) $(OBJS) $(LIBS)
$(CC) $(LIBFLAGS) $(CFLAGS) $(OBJS) $(LIBS) $(LDFLAGS)
$(LIB_EXTRA)

lib: $(LIBTARGET)
Expand Down

0 comments on commit f7d5fba

Please sign in to comment.