mirror of
https://github.com/curl/curl.git
synced 2026-07-16 13:07:16 +03:00
re-order the compiler arguments to keep more compiler happy
This commit is contained in:
parent
183f1531d3
commit
c7d517f6d2
2 changed files with 6 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue