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

Wine Cross Reference
wine/loader/Makefile.in

Version: ~ [ 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 TOPSRCDIR = @top_srcdir@
  2 TOPOBJDIR = ..
  3 SRCDIR    = @srcdir@
  4 VPATH     = @srcdir@
  5 MODULE    = wine
  6 
  7 C_SRCS = \
  8         main.c \
  9         preloader.c \
 10         pthread.c
 11 
 12 MAIN_OBJS = pthread.o main.o
 13 
 14 EXTRA_BINARIES = @EXTRA_BINARIES@
 15 
 16 PROGRAMS = \
 17         wine \
 18         wine-installed \
 19         wine-preloader
 20 
 21 MANPAGES = \
 22         wine.man \
 23         wine.de.man \
 24         wine.fr.man
 25 
 26 INSTALLDIRS = \
 27         $(DESTDIR)$(bindir) \
 28         $(DESTDIR)$(mandir)/man$(prog_manext) \
 29         $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext) \
 30         $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)
 31 
 32 all: wine wine-installed $(EXTRA_BINARIES) $(MANPAGES)
 33 
 34 @MAKE_RULES@
 35 
 36 LIBPTHREAD  = @LIBPTHREAD@
 37 LDEXECFLAGS = @LDEXECFLAGS@
 38 
 39 wine-preloader: preloader.o Makefile.in
 40         $(CC) -o $@ -static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7c000000 preloader.o $(LIBPORT) $(LDFLAGS)
 41 
 42 wine: $(MAIN_OBJS) Makefile.in
 43         $(CC) -o $@ $(LDEXECFLAGS) $(MAIN_OBJS) $(LIBWINE) $(LIBPORT) $(LIBPTHREAD) $(EXTRALIBS) $(LDFLAGS) $(LDRPATH_LOCAL)
 44 
 45 wine-installed: $(MAIN_OBJS) Makefile.in
 46         $(CC) -o $@ $(LDEXECFLAGS) $(MAIN_OBJS) $(LIBWINE) $(LIBPORT) $(LIBPTHREAD) $(EXTRALIBS) $(LDFLAGS) $(LDRPATH_INSTALL)
 47 
 48 $(EXTRA_BINARIES:%=__install__%): $(EXTRA_BINARIES) $(DESTDIR)$(bindir) dummy
 49         f=`expr $@ : '__install__\(.*\)'` && $(INSTALL_PROGRAM) $$f $(DESTDIR)$(bindir)/$$f
 50 
 51 .PHONY: $(EXTRA_BINARIES:%=__install__%)
 52 
 53 install install-lib:: wine-installed $(EXTRA_BINARIES:%=__install__%) $(MANPAGES) $(INSTALLDIRS)
 54         $(INSTALL_PROGRAM) wine-installed $(DESTDIR)$(bindir)/$(MODULE)
 55         $(INSTALL_DATA) wine.man $(DESTDIR)$(mandir)/man$(prog_manext)/wine.$(prog_manext)
 56         $(INSTALL_DATA) wine.de.man $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext)/wine.$(prog_manext)
 57         $(INSTALL_DATA) wine.fr.man $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wine.$(prog_manext)
 58 
 59 uninstall::
 60         -cd $(DESTDIR)$(bindir) && $(RM) $(EXTRA_BINARIES) $(MODULE)
 61         $(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wine.$(prog_manext)
 62         $(RM) $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext)/wine.$(prog_manext)
 63         $(RM) $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wine.$(prog_manext)
 64 
 65 @DEPENDENCIES@  # everything below this line is overwritten by make depend

~ [ 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.