75 lines
2.5 KiB
Makefile
75 lines
2.5 KiB
Makefile
# This Makefile understands the following targets:
|
|
#
|
|
# all (default): build wine
|
|
# clean: remove all intermediate files
|
|
# distclean: also remove all files created by configure
|
|
# test: run tests
|
|
# testclean: clean test results to force running all tests again
|
|
# crosstest: build tests as native windows applications (requires MinGW)
|
|
# install-lib: install libraries needed to run applications
|
|
# install-dev: install development environment
|
|
# install: install everything
|
|
# uninstall: uninstall everything
|
|
# depend: create the dependencies
|
|
# ctags: create a tags file for vim and others.
|
|
# etags: create a TAGS file for Emacs.
|
|
# manpages: compile manpages for Wine API
|
|
# htmlpages: compile html pages for Wine API
|
|
# sgmlpages: compile sgml source for the Wine API Guide
|
|
# xmlpages: compile xml source for the Wine API Guide
|
|
|
|
all: wine
|
|
@echo "Wine build complete."
|
|
|
|
# Rules for re-running configure
|
|
|
|
config.status: $(srcdir)/configure
|
|
@./config.status --recheck
|
|
|
|
include/config.h: include/stamp-h
|
|
include/stamp-h: $(srcdir)/include/config.h.in config.status
|
|
@./config.status include/config.h include/stamp-h
|
|
|
|
# Rules for cleaning
|
|
|
|
.PHONY: clean distclean __clean__
|
|
|
|
clean:: __clean__
|
|
distclean:: clean
|
|
$(RM) config.* configure.lineno TAGS tags include/config.h include/stamp-h Makefile Make.tmp .gitignore
|
|
$(RM) -r autom4te.cache
|
|
|
|
# Rules for uninstalling
|
|
|
|
.PHONY: install install-lib install-dev uninstall __uninstall__
|
|
uninstall:: __uninstall__
|
|
-rmdir $(DESTDIR)$(fontdir) $(DESTDIR)$(datadir)/wine $(DESTDIR)$(fakedlldir) $(DESTDIR)$(dlldir) $(DESTDIR)$(includedir)
|
|
|
|
# Dependencies between directories
|
|
|
|
# dependencies needed to build any dll or program
|
|
__tooldeps__: libs/port libs/wine libs/wpp
|
|
__builddeps__: __tooldeps__ include
|
|
.PHONY: depend check test testclean crosstest __tooldeps__ __builddeps__
|
|
|
|
loader server: libs/port libs/wine tools
|
|
fonts: tools/sfnt2fon
|
|
include: tools tools/widl
|
|
libs/wine tools: libs/port
|
|
tools/wmc tools/wrc: tools
|
|
tools/sfnt2fon tools/wmc tools/wrc: libs/wine
|
|
tools/widl tools/wmc tools/wrc: libs/wpp
|
|
libs/port libs/wine libs/wpp: include/config.h
|
|
|
|
# Misc rules
|
|
|
|
TAGSFLAGS = --langmap='c:+.idl.l.rh,make:(Make*.in)'
|
|
|
|
TAGS etags:
|
|
$(RM) TAGS
|
|
(test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs etags -a $(TAGSFLAGS)
|
|
|
|
tags ctags:
|
|
$(RM) tags
|
|
(test -d .git && git ls-files || find -L $(top_srcdir) -name '*.[ch]' -print) | xargs ctags -a $(TAGSFLAGS)
|