Makefile 382 B

12345678910111213141516
  1. # Makefile for mock project for issue #4569
  2. default:
  3. cabal v1-install -O0 --enable-shared --enable-executable-dynamic --disable-static
  4. clean:
  5. ghc-pkg unregister HelloWorld
  6. rm ~/.cabal/bin/hello-world
  7. rm ~/.cabal/lib/x86_64-osx-ghc-8.4.4/libHSHelloWorld*
  8. debug:
  9. otool -l dist/build/hello-world/hello-world | less
  10. # otool -tvV dist/build/hello-world/hello-world | less
  11. # EOF