aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-09-14 00:30:41 +0800
committerMistivia <i@mistivia.com>2025-09-14 00:30:41 +0800
commit35c8f8e94f0346856130b2a96a7c99790796e53f (patch)
tree8fbf1e5e8b99d8cdfa41765f4a9776d4d891acb6 /Makefile
parenta4daf467f871b0e77f07f1071b47b960da7bfba9 (diff)
add aws s3 client
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a454c34..e7c5cc3 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,9 @@ CC := gcc
CXX := g++
CFLAGS := -g -Wall
CXXFLAGS := -g -Wall -std=c++14
-LDFLAGS := -g -lavformat -lavutil -lavcodec
+LDFLAGS := -g \
+ -lavformat -lavutil -lavcodec \
+ -laws-cpp-sdk-core -laws-cpp-sdk-s3
C_SOURCES := $(shell find . -maxdepth 1 -name '*.c')
CPP_SOURCES := $(shell find . -maxdepth 1 -name '*.cpp')