mirror of
https://github.com/Waujito/youtubeUnblock.git
synced 2026-01-30 22:20:33 +03:00
Add crypto files
This commit is contained in:
24
deps/cyclone/Makefile
vendored
Normal file
24
deps/cyclone/Makefile
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
SRCS := $(shell find -name "*.c")
|
||||
OBJS := $(SRCS:%.c=build/%.o)
|
||||
override CFLAGS += -Iinclude -Wno-pedantic
|
||||
LIBNAME := libcyclone.a
|
||||
CC := gcc
|
||||
|
||||
|
||||
run: $(OBJS)
|
||||
@echo "AR $(LIBNAME)"
|
||||
@ar rcs libcyclone.a $(OBJS)
|
||||
|
||||
prep_dirs:
|
||||
mkdir build
|
||||
|
||||
|
||||
build/%.o: %.c prep_dirs
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
clean:
|
||||
@rm $(OBJS) || true
|
||||
@rm libcyclone.a || true
|
||||
@rm -rf build || true
|
||||
|
||||
|
||||
Reference in New Issue
Block a user