mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-13 15:23:36 +01:00
16 lines
149 B
Makefile
16 lines
149 B
Makefile
|
|
|
|
OBJ = download.o
|
|
LDADD = -lcurl
|
|
|
|
download: $(OBJ)
|
|
${CC} ${OBJ} -o download ${LDADD}
|
|
|
|
|
|
.c.o:
|
|
${CC} ${CFLAGS} -c $<
|
|
|
|
clean:
|
|
rm -f test *.o
|
|
|