Makefile 471 B

1234567891011121314151617181920212223242526272829
  1. .PHONY: all clean dbkg eclipse
  2. all: build-openfire
  3. # Can not use 'build' as target name, because there is a
  4. # directory called build
  5. build-openfire:
  6. cd build && ant
  7. clean:
  8. cd build && ant clean
  9. dpkg:
  10. cd build && ant installer.debian
  11. plugins:
  12. cd build && ant plugins
  13. eclipse: .settings .classpath .project
  14. .settings:
  15. ln -s build/eclipse/settings .settings
  16. .classpath:
  17. ln -s build/eclipse/classpath .classpath
  18. .project:
  19. ln -s build/eclipse/project .project