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

Wine Cross Reference
wine/server/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 DEFS      = -D__WINESRC__
  2 TOPSRCDIR = @top_srcdir@
  3 TOPOBJDIR = ..
  4 SRCDIR    = @srcdir@
  5 VPATH     = @srcdir@
  6 MODULE    = none
  7 EXTRALIBS = @LIBPOLL@
  8 
  9 C_SRCS = \
 10         async.c \
 11         atom.c \
 12         change.c \
 13         class.c \
 14         clipboard.c \
 15         completion.c \
 16         console.c \
 17         debugger.c \
 18         device.c \
 19         directory.c \
 20         event.c \
 21         fd.c \
 22         file.c \
 23         handle.c \
 24         hook.c \
 25         mach.c \
 26         mailslot.c \
 27         main.c \
 28         mapping.c \
 29         mutex.c \
 30         named_pipe.c \
 31         object.c \
 32         process.c \
 33         procfs.c \
 34         ptrace.c \
 35         queue.c \
 36         region.c \
 37         registry.c \
 38         request.c \
 39         semaphore.c \
 40         serial.c \
 41         signal.c \
 42         snapshot.c \
 43         sock.c \
 44         symlink.c \
 45         thread.c \
 46         timer.c \
 47         token.c \
 48         trace.c \
 49         unicode.c \
 50         user.c \
 51         window.c \
 52         winstation.c
 53 
 54 PROGRAMS = wineserver wineserver-installed
 55 MANPAGES = wineserver.man wineserver.fr.man
 56 
 57 INSTALLDIRS = \
 58         $(DESTDIR)$(bindir) \
 59         $(DESTDIR)$(mandir)/man$(prog_manext) \
 60         $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)
 61 
 62 all: $(PROGRAMS) $(MANPAGES)
 63 
 64 @MAKE_RULES@
 65 
 66 wineserver: $(OBJS)
 67         $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_LOCAL)
 68 
 69 wineserver-installed: $(OBJS)
 70         $(CC) -o $@ $(OBJS) $(LIBWINE) $(LIBPORT) $(LDFLAGS) $(LIBS) $(LDRPATH_INSTALL)
 71 
 72 install install-lib:: wineserver-installed $(MANPAGES) $(INSTALLDIRS)
 73         $(INSTALL_PROGRAM) wineserver-installed $(DESTDIR)$(bindir)/wineserver
 74         $(INSTALL_DATA) wineserver.man $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
 75         $(INSTALL_DATA) wineserver.fr.man $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wineserver.$(prog_manext)
 76 
 77 uninstall::
 78         $(RM) $(DESTDIR)$(bindir)/wineserver $(DESTDIR)$(mandir)/man$(prog_manext)/wineserver.$(prog_manext)
 79         $(RM) $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wineserver.$(prog_manext)
 80 
 81 @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.