1
0
mirror of https://github.com/ssb22/config.git synced 2023-06-13 17:50:48 +00:00
config/Makefile.test

9 lines
302 B
Makefile

# -*- mode: Makefile -*-
test:
# at least check Python compiles in both 2 and 3
python2 modeline.py | grep ^Modeline >/dev/null
python3 modeline.py | grep ^Modeline >/dev/null
echo hi|python2 .message-formatter|grep hi >/dev/null
echo hi|python3 .message-formatter|grep hi >/dev/null
.PHONY: test