bundle.make 1.0 KB

12345678910111213141516171819202122232425
  1. # extra binaries and data to bundle into the GRASS.app package
  2. #
  3. # use ${INSTALL} to copy binaries.
  4. # use ${INSTALL_DATA} for headers and other non-executables.
  5. # use ${MAKE_DIR_CMD} to create a subfolder if needed.
  6. # use ${LN} and ${LN_DIR} to symlink files and folders respectively.
  7. #
  8. # Destinations include: bin and lib and should be prefixed by
  9. # ${INST_DIR_TARGET}/
  10. # Includes should not normally be needed.
  11. #
  12. # For libraries, make sure to make symlinks if the symlink is the linked name.
  13. # ie, libfoo.1.0.dylib is the library file, but libfoo.1.dylib is the link name:
  14. # ${LN} libfoo.1.0.dylib ${INST_DIR_TARGET}/lib/libfoo.1.dylib
  15. # If you're not sure, make all symlinks for a library.
  16. #
  17. # use one line per file after the "bundle-macosx:" line, indented with a tab.
  18. # ie:
  19. # ${INSTALL} /usr/local/bin/gpsbabel ${INST_DIR_TARGET}/bin
  20. # ${INSTALL} /usr/local/pgsql/lib/libpq.5.1.dylib ${INST_DIR_TARGET}/lib
  21. # ${LN} libpq.5.1.dylib ${INST_DIR_TARGET}/lib/libpq.5.dylib
  22. bundle-macosx:
  23. @# add custom bundle commands here: