wonderful
Version:
A bunch of nice words and phrases to describe someone!
16 lines (11 loc) • 351 B
Plain Text
WORDS=$(shell cat words.txt | sed 's/^.*$$/"&",/g')
build: build-js build-python
# All the different languages are below:
build-js:
cat index.tmpl.js | sed 's/%WORDS%/$(WORDS)/' > index.js
build-python:
mkdir -p wonderful/
cat init.tmpl.py | sed 's/%WORDS%/$(WORDS)/' > wonderful/__init__.py