Initial commit

This commit is contained in:
Markil3
2021-08-14 14:27:48 -06:00
commit ff13c5a575
10 changed files with 1684 additions and 0 deletions

29
Makefile Normal file
View File

@@ -0,0 +1,29 @@
CC := gcc
all: play_capture play_repeat
install: install_capture install_repeat install_lollypop
install_capture: play_capture
cp play_capture ~/.local/bin/play_capture
install_repeat: play_repeat
cp play_repeat ~/.local/bin/play_repeat
install_lollypop: lollypopint
pip install dist/*.whl
play_capture: capture.c
$(CC) -o play_capture capture.c
play_repeat: repeat.c
$(CC) -o play_repeat repeat.c
lollypopint: setup.py lollypopint/__init__.py
python setup.py bdist_wheel
clean:
rm -f play_capture play_repeat
rm -fr build
rm -fr dist
rm -fr lollypopint.egg-info