~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Wine Cross Reference
wine/Makefile.in

Version: ~ [ wine-1.5.30 ] ~ [ wine-1.5.29 ] ~ [ wine-1.5.28 ] ~ [ wine-1.5.27 ] ~ [ wine-1.5.26 ] ~ [ wine-1.5.25 ] ~ [ wine-1.5.24 ] ~ [ wine-1.5.23 ] ~ [ wine-1.5.22 ] ~ [ wine-1.5.21 ] ~ [ wine-1.5.20 ] ~ [ wine-1.5.19 ] ~ [ wine-1.5.18 ] ~ [ wine-1.5.17 ] ~ [ wine-1.5.16 ] ~ [ wine-1.5.15 ] ~ [ wine-1.5.14 ] ~ [ wine-1.5.13 ] ~ [ wine-1.5.12 ] ~ [ wine-1.5.11 ] ~ [ wine-1.5.10 ] ~ [ wine-1.5.9 ] ~ [ wine-1.5.8 ] ~ [ wine-1.5.7 ] ~ [ wine-1.4.1 ] ~ [ wine-1.5.6 ] ~ [ wine-1.5.5 ] ~ [ wine-1.5.4 ] ~ [ wine-1.5.3 ] ~ [ wine-1.5.2 ] ~ [ wine-1.5.1 ] ~ [ wine-1.5.0 ] ~ [ wine-1.4 ] ~ [ wine-1.4-rc6 ] ~ [ wine-1.4-rc5 ] ~ [ wine-1.4-rc4 ] ~ [ wine-1.4-rc3 ] ~ [ wine-1.4-rc2 ] ~ [ wine-1.4-rc1 ] ~ [ wine-1.3.37 ] ~ [ wine-1.3.36 ] ~ [ wine-1.3.35 ] ~ [ wine-1.3.34 ] ~ [ wine-1.3.33 ] ~ [ wine-1.3.32 ] ~ [ wine-1.3.31 ] ~ [ wine-1.3.30 ] ~ [ wine-1.3.29 ] ~ [ wine-1.3.28 ] ~ [ wine-1.3.27 ] ~ [ wine-1.3.26 ] ~ [ wine-1.3.25 ] ~ [ wine-1.3.24 ] ~ [ wine-1.3.23 ] ~ [ wine-1.3.22 ] ~ [ wine-1.3.21 ] ~ [ wine-1.3.20 ] ~ [ wine-1.3.19 ] ~ [ wine-1.3.18 ] ~ [ wine-1.2.3 ] ~ [ wine-1.3.17 ] ~ [ wine-1.3.16 ] ~ [ wine-1.3.15 ] ~ [ wine-1.3.14 ] ~ [ wine-1.3.13 ] ~ [ wine-1.3.12 ] ~ [ wine-1.3.11 ] ~ [ wine-1.3.10 ] ~ [ wine-1.3.9 ] ~ [ wine-1.2.2 ] ~ [ wine-1.3.8 ] ~ [ wine-1.3.7 ] ~ [ wine-1.3.6 ] ~ [ wine-1.3.5 ] ~ [ wine-1.2.1 ] ~ [ wine-1.3.4 ] ~ [ wine-1.3.3 ] ~ [ wine-1.3.2 ] ~ [ wine-1.3.1 ] ~ [ wine-1.3.0 ] ~ [ wine-1.2 ] ~ [ wine-1.2-rc7 ] ~ [ wine-1.2-rc6 ] ~ [ wine-1.2-rc5 ] ~ [ wine-1.2-rc4 ] ~ [ wine-1.2-rc3 ] ~ [ wine-1.2-rc2 ] ~ [ wine-1.2-rc1 ] ~ [ wine-1.1.44 ] ~ [ wine-1.1.43 ] ~ [ wine-1.1.42 ] ~ [ wine-1.1.41 ] ~ [ wine-1.1.40 ] ~ [ wine-1.1.39 ] ~ [ wine-1.1.38 ] ~ [ wine-1.1.37 ] ~ [ wine-1.1.36 ] ~ [ wine-1.1.35 ] ~ [ wine-1.1.34 ] ~ [ wine-1.1.33 ] ~ [ wine-1.1.32 ] ~ [ wine-1.1.31 ] ~ [ wine-1.1.30 ] ~ [ wine-1.1.29 ] ~ [ wine-1.1.28 ] ~ [ wine-1.1.27 ] ~ [ wine-1.1.26 ] ~ [ wine-1.1.25 ] ~ [ wine-1.1.24 ] ~ [ wine-1.1.23 ] ~ [ wine-1.1.22 ] ~ [ wine-1.1.21 ] ~ [ wine-1.1.20 ] ~ [ wine-1.1.19 ] ~ [ wine-1.1.18 ] ~ [ wine-1.1.17 ] ~ [ wine-1.1.16 ] ~ [ wine-1.1.15 ] ~ [ wine-1.1.14 ] ~ [ wine-1.1.13 ] ~ [ wine-1.1.12 ] ~ [ wine-1.1.11 ] ~ [ wine-1.1.10 ] ~ [ wine-1.1.9 ] ~ [ wine-1.1.8 ] ~ [ wine-1.1.7 ] ~ [ wine-1.0.1 ] ~ [ wine-1.1.6 ] ~ [ wine-1.1.5 ] ~ [ wine-1.1.4 ] ~ [ wine-1.1.3 ] ~ [ wine-1.1.2 ] ~ [ wine-1.1.1 ] ~ [ wine-1.1.0 ] ~ [ wine-1.0 ] ~

  1 # This Makefile understands the following targets:
  2 #
  3 # all (default):   build wine
  4 # clean:           remove all intermediate files
  5 # distclean:       also remove all files created by configure
  6 # test:            run tests
  7 # testclean:       clean test results to force running all tests again
  8 # crosstest:       build tests as native windows applications (requires MinGW)
  9 # install-lib:     install libraries needed to run applications
 10 # install-dev:     install development environment
 11 # install:         install everything
 12 # uninstall:       uninstall everything
 13 # depend:          create the dependencies
 14 # ctags:           create a tags file for vim and others.
 15 # etags:           create a TAGS file for Emacs.
 16 # manpages:        compile manpages for Wine API
 17 # htmlpages:       compile html pages for Wine API
 18 # sgmlpages:       compile sgml source for the Wine API Guide
 19 # xmlpages:        compile xml source for the Wine API Guide
 20 
 21 # Sub-directories that don't have a makefile
 22 EXTRASUBDIRS = \
 23         dlls \
 24         libs \
 25         po \
 26         programs
 27 
 28 # Destination directories for make install
 29 INSTALLDIRS = \
 30         $(DESTDIR)$(bindir) \
 31         $(DESTDIR)$(dlldir) \
 32         $(DESTDIR)$(fakedlldir) \
 33         $(DESTDIR)$(mandir)/man$(prog_manext)
 34 
 35 all: wine
 36         @echo "Wine build complete."
 37 
 38 WINAPI_CHECK_EXTRA_FLAGS = --global
 39 
 40 @MAKE_RULES@
 41 
 42 # Rules for re-running configure
 43 
 44 config.status: configure
 45         @./config.status --recheck
 46 
 47 include/config.h: include/stamp-h
 48 include/stamp-h: include/config.h.in config.status
 49         @./config.status include/config.h include/stamp-h
 50 
 51 # Rules for cleaning
 52 
 53 .PHONY: __clean__
 54 clean:: __clean__
 55 distclean:: clean
 56         $(RM) config.* configure.lineno TAGS tags include/config.h include/stamp-h Makefile Make.tmp
 57         $(RM) -r autom4te.cache
 58 
 59 # Rules for uninstalling
 60 
 61 .PHONY: __uninstall__
 62 uninstall:: __uninstall__
 63         -rmdir $(DESTDIR)$(datadir)/wine $(DESTDIR)$(fakedlldir) $(DESTDIR)$(dlldir)
 64 
 65 # Dependencies between directories
 66 
 67 # dependencies needed to build any dll or program
 68 __tooldeps__: libs/port libs/wine libs/wpp
 69 __builddeps__: __tooldeps__ include
 70 .PHONY: test crosstest __tooldeps__ __builddeps__
 71 
 72 loader server: libs/port libs/wine tools
 73 fonts: tools
 74 include: tools tools/widl
 75 libs/wine: libs/port
 76 tools/wmc tools/wrc: tools
 77 tools tools/wmc tools/wrc: libs/wine
 78 tools/widl tools/wmc tools/wrc: libs/wpp
 79 
 80 dlls/shell32/Makefile dlls/shell32/__depend__: dlls/shell32/AUTHORS
 81 
 82 $(MAKEDEP): include/config.h
 83         @cd $(TOOLSDIR)/tools && $(MAKE) makedep$(TOOLSEXT)
 84 
 85 # Misc rules
 86 
 87 TAGSFLAGS = --langmap='c:+.idl.l.rh,make:(Make*.in)'
 88 
 89 TAGS etags:
 90         $(RM) TAGS
 91         (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs etags -a $(TAGSFLAGS)
 92 
 93 tags ctags:
 94         $(RM) tags
 95         (test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs ctags -a $(TAGSFLAGS)

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.