39 lines
1.4 KiB
Makefile
39 lines
1.4 KiB
Makefile
PROGRAMS = \
|
|
winecpp$(EXEEXT) \
|
|
winegcc$(EXEEXT) \
|
|
wineg++$(EXEEXT)
|
|
|
|
MANPAGES = winegcc.man.in
|
|
|
|
C_SRCS = \
|
|
utils.c \
|
|
winegcc.c
|
|
|
|
winegcc_EXTRADEFS = \
|
|
-DINCLUDEDIR="\"${includedir}\"" \
|
|
-DDLLDIR="\"${dlldir}\"" \
|
|
-DLIBDIR="\"${libdir}\"" \
|
|
-DCC="\"$(CC)\"" \
|
|
-DCPP="\"$(CPPBIN)\"" \
|
|
-DCXX="\"$(CXX)\"" \
|
|
-DPRELINK="\"$(PRELINK)\""
|
|
|
|
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) $@
|
|
|
|
.PHONY: install install-dev uninstall
|
|
|
|
install install-dev:: $(PROGRAMS) install-man-pages
|
|
$(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)
|
|
cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext)
|
|
cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) winecpp.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) winecpp.$(prog_manext)
|
|
|
|
uninstall::
|
|
$(RM) $(DESTDIR)$(bindir)/winegcc$(EXEEXT) $(DESTDIR)$(bindir)/wineg++$(EXEEXT) $(DESTDIR)$(bindir)/winecpp$(EXEEXT)
|
|
$(RM) $(DESTDIR)$(mandir)/man$(prog_manext)/wineg++.$(prog_manext) $(DESTDIR)$(mandir)/man$(prog_manext)/winecpp.$(prog_manext)
|