mirror of
https://github.com/curl/curl.git
synced 2026-08-25 04:23:36 +03:00
parent
61b79dee79
commit
a4196e2249
23 changed files with 51 additions and 90 deletions
|
|
@ -26,7 +26,7 @@
|
|||
TARGET = example
|
||||
|
||||
# Which object files that the executable consists of
|
||||
OBJS= ftpget.o
|
||||
OBJS = ftpget.o
|
||||
|
||||
# What compiler to use
|
||||
CC = gcc
|
||||
|
|
@ -48,7 +48,7 @@ LIBS = -lcurl -lsocket -lnsl -lssl -lcrypto
|
|||
|
||||
# Link the target with all objects and libraries
|
||||
$(TARGET) : $(OBJS)
|
||||
$(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)
|
||||
$(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