Abhishek Thakur
add socket kit
34121ca
raw
history blame
528 Bytes
CFLAGS += -std=c99 -Wall
.PHONY: quality style
quality:
python -m black --check --line-length 119 --target-version py38 .
python -m isort --check-only .
python -m flake8 --max-line-length 119
style:
python -m black --line-length 119 --target-version py38 .
python -m isort .
docker:
docker build -t competitions:latest .
docker tag competitions:latest huggingface/competitions:latest
docker push huggingface/competitions:latest
socket-kit.so: socket-kit.c
gcc $(CFLAGS) -shared -fPIC $^ -o $@ -ldl
clean:
rm *.so