533960f46f
* feat: make gif * fix readme image * wider gif * rotated sometimes
44 lines
1.0 KiB
Makefile
44 lines
1.0 KiB
Makefile
TARGET ?= margen
|
|
INSTALL_DIR ?= $(HOME)/.local/bin
|
|
TEST_ARGS ?=
|
|
SHELL := /bin/bash
|
|
|
|
.PHONY: build
|
|
clean:
|
|
@rm -rf build
|
|
|
|
build:
|
|
@mkdir -p build
|
|
gcc -Wall src/*.c src/*.h -lm -o build/$(TARGET)
|
|
|
|
.PHONY: install
|
|
install: build
|
|
cp -f build/$(TARGET) $(INSTALL_DIR)/$(TARGET)
|
|
|
|
.PHONY: time
|
|
time: build
|
|
time ./build/$(TARGET) $(TEST_ARGS)
|
|
|
|
.PHONY: valgrind
|
|
valgrind: build
|
|
valgrind --leak-check=full -s ./build/$(TARGET) $(TEST_ARGS)
|
|
|
|
.PHONY: release
|
|
release: clean build time
|
|
@echo -n "Version (x.y.z): "
|
|
@read VERSION; \
|
|
sed -i "s/#define VERSION.*/#define VERSION \"v$$VERSION\"/g" ./src/const.h; \
|
|
git add ./src/const.h; \
|
|
git diff origin/master; \
|
|
git commit -m "$(TARGET) v$$VERSION"; \
|
|
git tag v$$VERSION -m "$(TARGET) v$$VERSION"
|
|
@echo updated ./src/const.h and tagged version
|
|
|
|
.PHONY: gif
|
|
gif: build
|
|
mkdir -p tmp
|
|
for i in {1..50}; do \
|
|
./build/margen -w=1920 -h=720 --seed=$$i$$i -o=tmp/image$$i.bmp ; \
|
|
done
|
|
ffmpeg -y -f image2 -framerate 1 -i tmp/image%d.bmp -vf scale=960x360 images/sample.gif
|
|
rm -rf tmp
|