mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-06 09:20:57 +01:00
16 lines
No EOL
291 B
Makefile
16 lines
No EOL
291 B
Makefile
# Make GNU Make xonshy
|
|
SHELL=xonsh
|
|
.SHELLFLAGS=-c
|
|
.ONESHELL:
|
|
|
|
xonsh/ply:
|
|
git subtree pull --prefix xonsh/ply https://github.com/dabeaz/ply.git master --squash
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
find xonsh -name __amalgam__.py -delete -print
|
|
|
|
.PHONY: amalgamate
|
|
amalgamate:
|
|
python3 amalgamate.py xonsh
|