Files
Thun/implementations/Python/Makefile
T
sforman ced691279a Working on README, put defs in joy.py
I'm on an Ubuntu system right now and the split command doesn't have the
'-p' switch.  :(   I wasn't happy with that janky solution anyway.
2023-07-25 21:13:35 -07:00

9 lines
212 B
Makefile

# split on Ubuntu doesn't have '-p' option! Wah!
joy: joy.py ../defs.txt
split -p \'\'\'\.splitlines\(\) joy.py joy.py.
cat joy.py.aa ../defs.txt joy.py.ab > joy
chmod u+x joy
clean:
$(RM) -fv joy joy.py.*