Commit 1ec033cf authored by Vincent Béron's avatar Vincent Béron Committed by Alexandre Julliard

Create symlinks named wineg++ and winecpp while building winegcc.

parent d488f3f1
...@@ -16,7 +16,10 @@ VPATH = @srcdir@ ...@@ -16,7 +16,10 @@ VPATH = @srcdir@
EXEEXT = @EXEEXT@ EXEEXT = @EXEEXT@
MODULE = none MODULE = none
PROGRAMS = winegcc$(EXEEXT) PROGRAMS = \
winecpp$(EXEEXT) \
winegcc$(EXEEXT) \
wineg++$(EXEEXT)
C_SRCS = \ C_SRCS = \
utils.c \ utils.c \
...@@ -29,6 +32,9 @@ all: $(PROGRAMS) ...@@ -29,6 +32,9 @@ all: $(PROGRAMS)
winegcc$(EXEEXT): winegcc.o utils.o winegcc$(EXEEXT): winegcc.o utils.o
$(CC) $(CFLAGS) -o $@ winegcc.o utils.o $(LIBPORT) $(CC) $(CFLAGS) -o $@ winegcc.o utils.o $(LIBPORT)
winecpp$(EXEEXT) wineg++$(EXEEXT): winegcc$(EXEEXT)
$(RM) $@ && $(LN_S) winegcc$(EXEEXT) $@
install:: $(PROGRAMS) install:: $(PROGRAMS)
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext) $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
$(INSTALL_PROGRAM) winegcc$(EXEEXT) $(bindir)/winegcc$(EXEEXT) $(INSTALL_PROGRAM) winegcc$(EXEEXT) $(bindir)/winegcc$(EXEEXT)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment