Makefile.am
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:2k
源码类别:

OpenGL

开发平台:

Visual C++

  1. ACLOCAL_AMFLAGS = -I macros
  2. pkgdatadir = @datadir@/@PACKAGE@
  3. dosstuff = 
  4. celestia.mak 
  5. celestia.iss 
  6. celestia.sln 
  7. celestia.vcproj 
  8. $(wildcard *.bat)
  9. noinst_DATA = 
  10. coding-standards.html 
  11. devguide.txt 
  12. $(dosstuff)
  13. pkgdata_DATA = 
  14. celestia.cfg 
  15. controls.txt 
  16. COPYING 
  17. $(wildcard *.cel)
  18. EXTRA_DIST = 
  19. $(pkgdata_DATA) 
  20. $(noinst_DATA) 
  21. splash.png 
  22. po/extract_resource_strings.pl 
  23. po/translate_resources.pl 
  24. TRANSLATORS
  25. splashdir = $(pkgdatadir)/splash
  26. splash_DATA = splash.png
  27. SUBDIRS = src data extras extras-standard textures models shaders fonts po po2 locale scripts
  28. # Non-automake directories
  29. NONAUTO = admin macosx windows
  30. # From KDE app template
  31. # We already have a configure.in file, we don't build it from configure.in.in 
  32. #$(top_srcdir)/configure.in: configure.in.in $(top_srcdir)/subdirs
  33. # cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common configure.in ;
  34. $(top_srcdir)/subdirs:
  35. cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs
  36. # This is just silly
  37. #$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in
  38. # @cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4
  39. MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4
  40. package-messages:
  41. $(MAKE) -f admin/Makefile.common package-messages
  42. $(MAKE) -C po merge
  43. dist-hook:
  44.   cd $(srcdir) && 
  45.   ( 
  46.     for dir in $(NONAUTO) ; do 
  47.       find $$dir -depth -print | egrep -v '(~$$)|(/CVS)|(/.svn)|(/.#)|(/.deps)' 
  48.       | cpio -pdum $(distdir) 2>/dev/null ; 
  49.     done 
  50.   ) 
  51. )
  52. cd $(top_distdir) && perl admin/am_edit -padmin
  53. cd $(top_distdir) && $(MAKE) -f admin/Makefile.common subdirs
  54. install-data-hook:
  55. if [ "$(kde_datadir)" -a -d $(DESTDIR)/$(kde_datadir)/@PACKAGE@ -a ! -h $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ] ; then 
  56. mv -f -b $(DESTDIR)/$(kde_datadir)/@PACKAGE@/* $(DESTDIR)/$(datadir)/@PACKAGE@/ ; 
  57. rmdir $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ; 
  58. fi
  59. if [ "$(kde_datadir)" -a ! -h $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ] ; then 
  60. ln -s $(datadir)/@PACKAGE@ $(DESTDIR)/$(kde_datadir)/@PACKAGE@ ; 
  61. fi