Makefile 237 B

1234567891011121314151617
  1. pythonReq := $(shell python -c 'import yaml' > /dev/null 2>&1 && (echo "installed" ) || (echo "not installed "; exit 1) )
  2. check:
  3. @echo yaml module $(pythonReq)
  4. all:
  5. @echo Hello
  6. test:
  7. echo "hello world"
  8. clean:
  9. echo "Clean"