configure: Changes from running autconf after previous patch.
[wine/hacks.git] / tools / winebuild / Makefile.in
blob7270508e9b094c40147d73235e187af448fe76bf
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR = @srcdir@
4 VPATH = @srcdir@
5 EXEEXT = @EXEEXT@
6 DEFS = -D__WINESRC__ $(EXTRADEFS)
8 PROGRAMS = winebuild$(EXEEXT)
9 MANPAGES = winebuild.man
10 MODULE = none
12 C_SRCS = \
13 import.c \
14 main.c \
15 parser.c \
16 relay.c \
17 res16.c \
18 res32.c \
19 spec16.c \
20 spec32.c \
21 utils.c
23 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
25 all: $(PROGRAMS) $(MANPAGES)
27 @MAKE_RULES@
29 winebuild$(EXEEXT): $(OBJS)
30 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBPORT) $(LDFLAGS)
32 install install-dev:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
33 $(INSTALL_PROGRAM) winebuild$(EXEEXT) $(DESTDIR)$(bindir)/winebuild$(EXEEXT)
34 $(INSTALL_DATA) winebuild.man $(DESTDIR)$(mandir)/man$(prog_manext)/winebuild.$(prog_manext)
36 uninstall::
37 $(RM) $(DESTDIR)$(bindir)/winebuild$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/winebuild.$(prog_manext)