Files
2025-12-01 14:52:14 +01:00

9 lines
176 B
Makefile

ifeq ($(shell uname -s),Linux)
LFLAGS = -lcrypto
else
LFLAGS = -lbcrypt
endif
all:
cc s3.c test/generate_test_url.c -o test/generate_test_url -Wall -Wextra $(LFLAGS) -ggdb