comctl32: Fixed TreeView_EndEditLabelNow crash.
[wine] / tools / wmc / Makefile.in
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ../..
3 SRCDIR    = @srcdir@
4 VPATH     = @srcdir@
5 EXEEXT    = @EXEEXT@
6
7 PROGRAMS = wmc$(EXEEXT)
8 MANPAGES = wmc.man
9 MODULE   = none
10
11 C_SRCS = \
12         lang.c \
13         mcl.c \
14         utils.c \
15         wmc.c \
16         write.c
17
18 BISON_SRCS = mcy.y
19
20 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
21
22 all: $(PROGRAMS) $(MANPAGES)
23
24 @MAKE_RULES@
25
26 wmc$(EXEEXT): $(OBJS)
27         $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBWINE_LDFLAGS) $(LIBPORT) $(LDFLAGS)
28
29 install:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS)
30         $(INSTALL_DATA) wmc.man $(DESTDIR)$(mandir)/man$(prog_manext)/wmc.$(prog_manext)
31         $(INSTALL_PROGRAM) wmc$(EXEEXT) $(DESTDIR)$(bindir)/wmc$(EXEEXT)
32
33 uninstall::
34         $(RM) $(DESTDIR)$(bindir)/wmc$(EXEEXT) $(DESTDIR)$(mandir)/man$(prog_manext)/wmc.$(prog_manext)
35
36 mcy.tab.c: mcy.tab.h   # for parallel makes
37
38 @DEPENDENCIES@  # everything below this line is overwritten by make depend
39
40 mcl.o: mcy.tab.h