blob: 8f4d2a262c59849fb960ea156531b63bc20102f4 [file] [log] [blame]
Alexandre Julliardbf9130a1996-10-13 17:45:47 +00001TOPSRCDIR = @top_srcdir@
2TOPOBJDIR = ..
3SRCDIR = @srcdir@
4VPATH = @srcdir@
Alexandre Julliarde2991ea1995-07-29 13:09:43 +00005
Alexandre Julliardff8331e1995-09-18 11:19:54 +00006C_SRCS = \
Alexandre Julliardf45325e2003-11-06 23:05:41 +00007 main.c \
Alexandre Julliard4fda6572009-07-04 11:20:39 +02008 preloader.c
Alexandre Julliard08a64e62003-10-10 23:37:18 +00009
Alexandre Julliard3e6eab32009-08-13 19:54:31 +020010MAIN_BINARY = @MAIN_BINARY@
Alexandre Julliard26639172006-02-17 14:12:29 +010011EXTRA_BINARIES = @EXTRA_BINARIES@
Alexandre Julliardf45325e2003-11-06 23:05:41 +000012
Alexandre Julliard7035aa52006-12-27 21:23:36 +010013PROGRAMS = \
14 wine \
Alexandre Julliardf4a19c82009-03-10 18:22:38 +010015 wine-installed \
16 wine-preloader
Alexandre Julliard7035aa52006-12-27 21:23:36 +010017
Jonathan Ernst1c0f2fe2008-01-10 16:00:41 +010018MANPAGES = \
19 wine.man \
20 wine.de.man \
21 wine.fr.man
Alexandre Julliard8dd4ee72005-06-15 10:25:40 +000022
Marco Schusterfab0aee2007-12-11 17:18:14 +010023INSTALLDIRS = \
24 $(DESTDIR)$(bindir) \
25 $(DESTDIR)$(mandir)/man$(prog_manext) \
Jonathan Ernst1c0f2fe2008-01-10 16:00:41 +010026 $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext) \
27 $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)
Alexandre Julliard2886e9b2006-08-07 17:48:18 +020028
Alexandre Julliardf4a19c82009-03-10 18:22:38 +010029all: wine wine-installed $(EXTRA_BINARIES) $(MANPAGES)
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000030
Alexandre Julliardff8331e1995-09-18 11:19:54 +000031@MAKE_RULES@
Alexandre Julliarde2991ea1995-07-29 13:09:43 +000032
Alexandre Julliardf45325e2003-11-06 23:05:41 +000033LIBPTHREAD = @LIBPTHREAD@
Alexandre Julliard4d52d372003-03-24 19:33:20 +000034LDEXECFLAGS = @LDEXECFLAGS@
Alexandre Julliard35363162002-05-22 21:32:49 +000035
Alexandre Julliardf4a19c82009-03-10 18:22:38 +010036wine-preloader: preloader.o Makefile.in
Alexandre Julliard5729f582005-06-17 10:22:46 +000037 $(CC) -o $@ -static -nostartfiles -nodefaultlibs -Wl,-Ttext=0x7c000000 preloader.o $(LIBPORT) $(LDFLAGS)
Alexandre Julliarda628c132003-11-12 03:28:21 +000038
Alexandre Julliard4fda6572009-07-04 11:20:39 +020039wine: main.o Makefile.in
40 $(CC) -o $@ $(LDEXECFLAGS) main.o $(LIBWINE) $(LIBPORT) $(LIBPTHREAD) $(EXTRALIBS) $(LDFLAGS) $(LDRPATH_LOCAL)
Alexandre Julliard1f113332007-06-20 20:03:30 +020041
Alexandre Julliard4fda6572009-07-04 11:20:39 +020042wine-installed: main.o Makefile.in
43 $(CC) -o $@ $(LDEXECFLAGS) main.o $(LIBWINE) $(LIBPORT) $(LIBPTHREAD) $(EXTRALIBS) $(LDFLAGS) $(LDRPATH_INSTALL)
Alexandre Julliardf45325e2003-11-06 23:05:41 +000044
Alexandre Julliardbfeaad02009-03-30 15:05:17 +020045$(EXTRA_BINARIES:%=__install__%): $(EXTRA_BINARIES) $(DESTDIR)$(bindir) dummy
Alexandre Julliard9701da42009-03-23 15:51:59 +010046 f=`expr $@ : '__install__\(.*\)'` && $(INSTALL_PROGRAM) $$f $(DESTDIR)$(bindir)/$$f
47
Alexandre Julliard90647772009-08-13 19:48:42 +020048.PHONY: install-man-pages $(EXTRA_BINARIES:%=__install__%)
Alexandre Julliard9701da42009-03-23 15:51:59 +010049
Alexandre Julliard90647772009-08-13 19:48:42 +020050install install-lib:: wine-installed $(DESTDIR)$(bindir) $(EXTRA_BINARIES:%=__install__%)
Alexandre Julliard3e6eab32009-08-13 19:54:31 +020051 $(INSTALL_PROGRAM) wine-installed $(DESTDIR)$(bindir)/$(MAIN_BINARY)
Alexandre Julliard90647772009-08-13 19:48:42 +020052
53@WOW64_DISABLE@ install install-lib:: install-man-pages
54
55install-man-pages: $(MANPAGES) $(INSTALLDIRS) dummy
Mike Frysinger53928442006-02-14 13:51:38 +010056 $(INSTALL_DATA) wine.man $(DESTDIR)$(mandir)/man$(prog_manext)/wine.$(prog_manext)
Marco Schusterfab0aee2007-12-11 17:18:14 +010057 $(INSTALL_DATA) wine.de.man $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext)/wine.$(prog_manext)
Jonathan Ernst1c0f2fe2008-01-10 16:00:41 +010058 $(INSTALL_DATA) wine.fr.man $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wine.$(prog_manext)
Alexandre Julliard35363162002-05-22 21:32:49 +000059
60uninstall::
Alexandre Julliard3e6eab32009-08-13 19:54:31 +020061 -cd $(DESTDIR)$(bindir) && $(RM) $(MAIN_BINARY) $(EXTRA_BINARIES)
Mike Frysinger53928442006-02-14 13:51:38 +010062 $(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wine.$(prog_manext)
Marco Schusterfab0aee2007-12-11 17:18:14 +010063 $(RM) $(DESTDIR)$(mandir)/de.UTF-8/man$(prog_manext)/wine.$(prog_manext)
Jonathan Ernst1c0f2fe2008-01-10 16:00:41 +010064 $(RM) $(DESTDIR)$(mandir)/fr.UTF-8/man$(prog_manext)/wine.$(prog_manext)
Alexandre Julliard35363162002-05-22 21:32:49 +000065
Alexandre Julliard32ab8952006-09-14 09:38:16 +020066@DEPENDENCIES@ # everything below this line is overwritten by make depend