winemac: Fix a leak in macdrv_CountClipboardFormats(). (Clang).
[wine/wine-gecko.git] / tools / winegcc / Makefile.in
blobdce7ae2606328617dd37ea85ab7e591109695ace
1 EXTRADEFS = \
2 -DINCLUDEDIR="\"$(includedir)\"" \
3 -DDLLDIR="\"$(dlldir)\"" \
4 -DLIBDIR="\"$(libdir)\"" \
5 -DCC="\"$(CC)\"" \
6 -DCPP="\"@CPPBIN@\"" \
7 -DCXX="\"@CXX@\"" \
8 -DPRELINK="\"$(PRELINK)\""
10 PROGRAMS = \
11 winecpp$(EXEEXT) \
12 winegcc$(EXEEXT) \
13 wineg++$(EXEEXT)
15 MANPAGE = winegcc.man
17 C_SRCS = \
18 utils.c \
19 winegcc.c
21 INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext)
23 all: $(PROGRAMS)
25 @MAKE_RULES@
27 winegcc$(EXEEXT): winegcc.o utils.o
28 $(CC) $(CFLAGS) -o $@ winegcc.o utils.o $(LIBPORT) $(LDFLAGS)
30 winecpp$(EXEEXT) wineg++$(EXEEXT): winegcc$(EXEEXT)
31 $(RM) $@ && $(LN_S) winegcc$(EXEEXT) $@
33 install install-dev:: $(PROGRAMS) $(DESTDIR)$(bindir) install-man-pages
34 $(INSTALL_PROGRAM) winegcc$(EXEEXT) $(DESTDIR)$(bindir)/winegcc$(EXEEXT)
35 cd $(DESTDIR)$(bindir) && $(RM) wineg++$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) wineg++$(EXEEXT)
36 cd $(DESTDIR)$(bindir) && $(RM) winecpp$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) winecpp$(EXEEXT)
37 cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext)
38 cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) winecpp.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) winecpp.$(prog_manext)
40 uninstall::
41 $(RM) $(DESTDIR)$(bindir)/winegcc$(EXEEXT) $(DESTDIR)$(bindir)/wineg++$(EXEEXT) $(DESTDIR)$(bindir)/winecpp$(EXEEXT)
42 $(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wineg++.$(prog_manext) $(DESTDIR)$(mandir)/man$(prog_manext)/winecpp.$(prog_manext)