| -DINCLUDEDIR="\"$(includedir)\"" \ |
| -DDLLDIR="\"$(dlldir)\"" \ |
| -DLIBDIR="\"$(libdir)\"" \ |
| -DDLLFLAGS="\"@DLLFLAGS@\"" \ |
| -DLDDLLFLAGS="\"@LDDLLFLAGS@\"" \ |
| -DPRELINK="\"$(PRELINK)\"" |
| INSTALLDIRS = $(DESTDIR)$(bindir) $(DESTDIR)$(mandir)/man$(prog_manext) |
| all: $(PROGRAMS) $(MANPAGES) |
| winegcc$(EXEEXT): winegcc.o utils.o |
| $(CC) $(CFLAGS) -o $@ winegcc.o utils.o $(LIBPORT) $(LDFLAGS) |
| winecpp$(EXEEXT) wineg++$(EXEEXT): winegcc$(EXEEXT) |
| $(RM) $@ && $(LN_S) winegcc$(EXEEXT) $@ |
| install install-dev:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS) |
| $(INSTALL_PROGRAM) winegcc$(EXEEXT) $(DESTDIR)$(bindir)/winegcc$(EXEEXT) |
| cd $(DESTDIR)$(bindir) && $(RM) wineg++$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) wineg++$(EXEEXT) |
| cd $(DESTDIR)$(bindir) && $(RM) winecpp$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) winecpp$(EXEEXT) |
| $(INSTALL_DATA) winegcc.man $(DESTDIR)$(mandir)/man$(prog_manext)/winegcc.$(prog_manext) |
| cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext) |
| $(RM) $(DESTDIR)$(bindir)/winegcc$(EXEEXT) $(DESTDIR)$(bindir)/wineg++$(EXEEXT) $(DESTDIR)$(bindir)/winecpp$(EXEEXT) \ |
| $(DESTDIR)$(mandir)/man$(prog_manext)/winegcc.$(prog_manext) $(DESTDIR)$(mandir)/man$(prog_manext)/wineg++.$(prog_manext) |
| @DEPENDENCIES@ # everything below this line is overwritten by make depend |