aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/Makefile.example
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-14 23:01:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-14 23:01:14 +0000
commitc7d517f6d2fd056e50fa0cb345e22d6cd7917216 (patch)
treeefbb884f3d6fbd12cb061e1de263a4b6e52d7cfa /docs/examples/Makefile.example
parent183f1531d3104acf453ac710b6dfc69b8bfc99a2 (diff)
re-order the compiler arguments to keep more compiler happy
Diffstat (limited to 'docs/examples/Makefile.example')
-rw-r--r--docs/examples/Makefile.example2
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