Horoscope/Makefile

15 lines
248 B
Makefile
Raw Permalink Normal View History

2024-09-28 20:35:08 +02:00
HEADER = header.bat
PYTHON = main.py
OUTPUT = horoscope.bat
all: build
build:
cat $(HEADER) > $(OUTPUT)
echo "" >> $(OUTPUT)
echo "::python_beg" >> $(OUTPUT)
cat $(PYTHON) >> $(OUTPUT)
echo "" >> $(OUTPUT)
echo "::python_end" >> $(OUTPUT)