shell32: Fix drag-scrolling in the shellview object.
[wine/multimedia.git] / tools / winegcc / Makefile.in
blob40c43c0257cc52573d345bacdbb63896be17837c
1 DEFS = \
2 -DINCLUDEDIR="\"$(includedir)\"" \
3 -DDLLDIR="\"$(dlldir)\"" \
4 -DLIBDIR="\"$(libdir)\"" \
5 -DDLLFLAGS="\"@DLLFLAGS@\"" \
6 -DLDDLLFLAGS="\"@LDDLLFLAGS@\"" \
7 -DAS="\"$(AS)\"" \
8 -DCC="\"$(CC)\"" \
9 -DCPP="\"@CPPBIN@\"" \
10 -DCXX="\"$(CXX)\"" \
11 -DLD="\"$(LD)\"" \
12 -DPRELINK="\"$(PRELINK)\""
14 TOPSRCDIR = @top_srcdir@
15 TOPOBJDIR = ../..
16 SRCDIR = @srcdir@
17 VPATH = @srcdir@
18 EXEEXT = @EXEEXT@
19 MODULE = none
21 PROGRAMS = \
22 winecpp$(EXEEXT) \
23 winegcc$(EXEEXT) \
24 wineg++$(EXEEXT)
26 MANPAGES = winegcc.man
28 C_SRCS = \
29 utils.c \
30 winegcc.c
32 all: $(PROGRAMS) $(MANPAGES)
34 @MAKE_RULES@
36 winegcc$(EXEEXT): winegcc.o utils.o
37 $(CC) $(CFLAGS) -o $@ winegcc.o utils.o $(LIBPORT)
39 winecpp$(EXEEXT) wineg++$(EXEEXT): winegcc$(EXEEXT)
40 $(RM) $@ && $(LN_S) winegcc$(EXEEXT) $@
42 install:: $(PROGRAMS) $(MANPAGES)
43 $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
44 $(INSTALL_PROGRAM) winegcc$(EXEEXT) $(bindir)/winegcc$(EXEEXT)
45 cd $(bindir) && $(RM) wineg++$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) wineg++$(EXEEXT)
46 cd $(bindir) && $(RM) winecpp$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) winecpp$(EXEEXT)
47 $(INSTALL_DATA) winegcc.man $(mandir)/man$(prog_manext)/winegcc.$(prog_manext)
48 cd $(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext)
50 uninstall::
51 $(RM) $(bindir)/winegcc$(EXEEXT) $(bindir)/wineg++$(EXEEXT) $(bindir)/winecpp$(EXEEXT) \
52 $(mandir)/man$(prog_manext)/winegcc.$(prog_manext) $(mandir)/man$(prog_manext)/wineg++.$(prog_manext)
54 ### Dependencies: