diff options
Diffstat (limited to 'docs/examples/Makefile.example')
-rw-r--r-- | docs/examples/Makefile.example | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/Makefile.example b/docs/examples/Makefile.example index 03e7c3f64..0852c0f3c 100644 --- a/docs/examples/Makefile.example +++ b/docs/examples/Makefile.example @@ -35,7 +35,7 @@ LIBS = -lcurl -lsocket -lnsl -lssl -lcrypto -dl # Link the target with all objects and libraries $(TARGET) : $(OBJS) - $(CC) $(LDFLAGS) $(LIBS) -o $(TARGET) $(OBJS) + $(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS) # Compile the source files into object files ftpget.o : ftpget.c |