Commit 280661c6 authored by Alexandre Julliard's avatar Alexandre Julliard

Moved winegcc and winewrap to a separate directory.

parent 8e538a3d
...@@ -1581,6 +1581,7 @@ tools/widl/Makefile ...@@ -1581,6 +1581,7 @@ tools/widl/Makefile
tools/winapi/Makefile tools/winapi/Makefile
tools/winebuild/Makefile tools/winebuild/Makefile
tools/winedump/Makefile tools/winedump/Makefile
tools/winegcc/Makefile
tools/wmc/Makefile tools/wmc/Makefile
tools/wrc/Makefile]) tools/wrc/Makefile])
......
...@@ -2,5 +2,3 @@ Makefile ...@@ -2,5 +2,3 @@ Makefile
bin2res bin2res
fnt2bdf fnt2bdf
makedep makedep
winegcc
winewrap
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\"" -DINCLUDEDIR="\"$(includedir)\"" DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
TOPSRCDIR = @top_srcdir@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR = .. TOPOBJDIR = ..
SRCDIR = @srcdir@ SRCDIR = @srcdir@
...@@ -8,21 +8,18 @@ MODULE = none ...@@ -8,21 +8,18 @@ MODULE = none
PROGRAMS = \ PROGRAMS = \
bin2res \ bin2res \
fnt2bdf \ fnt2bdf \
makedep \ makedep
winegcc \
winewrap
C_SRCS = \ C_SRCS = \
bin2res.c \ bin2res.c \
fnt2bdf.c \ fnt2bdf.c \
makedep.c \ makedep.c
winegcc.c \
winewrap.c
SUBDIRS = \ SUBDIRS = \
widl \ widl \
winebuild \ winebuild \
winedump \ winedump \
winegcc \
wmc \ wmc \
wrc wrc
...@@ -45,21 +42,12 @@ fnt2bdf: fnt2bdf.o ...@@ -45,21 +42,12 @@ fnt2bdf: fnt2bdf.o
bin2res: bin2res.o bin2res: bin2res.o
$(CC) $(CFLAGS) -o bin2res bin2res.o $(LIBPORT) $(CC) $(CFLAGS) -o bin2res bin2res.o $(LIBPORT)
winegcc: winegcc.o
$(CC) $(CFLAGS) -o winegcc winegcc.o $(LIBPORT)
winewrap: winewrap.o
$(CC) $(CFLAGS) -o winewrap winewrap.o $(LIBPORT)
install:: install::
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext) $(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
$(INSTALL_SCRIPT) $(SRCDIR)/winemaker $(bindir)/winemaker $(INSTALL_SCRIPT) $(SRCDIR)/winemaker $(bindir)/winemaker
$(INSTALL_PROGRAM) winegcc $(bindir)/winegcc
cd $(bindir) && $(RM) wineg++ && $(LN_S) winegcc wineg++
$(INSTALL_PROGRAM) winewrap $(bindir)/winewrap
$(INSTALL_DATA) $(SRCDIR)/winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext) $(INSTALL_DATA) $(SRCDIR)/winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
uninstall:: uninstall::
$(RM) $(bindir)/winemaker $(bindir)/winegcc $(bindir)/wineg++ $(bindir)/winewrap $(mandir)/man$(prog_manext)/winemaker.$(prog_manext) $(RM) $(bindir)/winemaker $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
### Dependencies: ### Dependencies:
Makefile
winegcc
winewrap
DEFS = -DINCLUDEDIR="\"$(includedir)\""
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = none
PROGRAMS = \
winegcc \
winewrap
C_SRCS = \
winegcc.c \
winewrap.c
all: $(PROGRAMS)
@MAKE_RULES@
winegcc: winegcc.o
$(CC) $(CFLAGS) -o $@ winegcc.o $(LIBPORT)
winewrap: winewrap.o
$(CC) $(CFLAGS) -o $@ winewrap.o $(LIBPORT)
install:: $(PROGRAMS)
$(MKINSTALLDIRS) $(bindir)
$(INSTALL_PROGRAM) winegcc $(bindir)/winegcc
$(INSTALL_PROGRAM) winewrap $(bindir)/winewrap
cd $(bindir) && $(RM) wineg++ && $(LN_S) winegcc wineg++
uninstall::
$(RM) $(bindir)/winegcc $(bindir)/wineg++ $(bindir)/winewrap
### Dependencies:
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