re-order the compiler arguments to keep more compiler happy

This commit is contained in:
Daniel Stenberg 2002-08-14 23:01:14 +00:00
parent 183f1531d3
commit c7d517f6d2
2 changed files with 6 additions and 1 deletions

View file

@ -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