Moved winegcc and winewrap to a separate directory.
This commit is contained in:
parent
8e538a3dca
commit
280661c6f4
|
@ -1581,6 +1581,7 @@ tools/widl/Makefile
|
|||
tools/winapi/Makefile
|
||||
tools/winebuild/Makefile
|
||||
tools/winedump/Makefile
|
||||
tools/winegcc/Makefile
|
||||
tools/wmc/Makefile
|
||||
tools/wrc/Makefile])
|
||||
|
||||
|
|
|
@ -2,5 +2,3 @@ Makefile
|
|||
bin2res
|
||||
fnt2bdf
|
||||
makedep
|
||||
winegcc
|
||||
winewrap
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\"" -DINCLUDEDIR="\"$(includedir)\""
|
||||
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
|
||||
TOPSRCDIR = @top_srcdir@
|
||||
TOPOBJDIR = ..
|
||||
SRCDIR = @srcdir@
|
||||
|
@ -8,21 +8,18 @@ MODULE = none
|
|||
PROGRAMS = \
|
||||
bin2res \
|
||||
fnt2bdf \
|
||||
makedep \
|
||||
winegcc \
|
||||
winewrap
|
||||
makedep
|
||||
|
||||
C_SRCS = \
|
||||
bin2res.c \
|
||||
fnt2bdf.c \
|
||||
makedep.c \
|
||||
winegcc.c \
|
||||
winewrap.c
|
||||
makedep.c
|
||||
|
||||
SUBDIRS = \
|
||||
widl \
|
||||
winebuild \
|
||||
winedump \
|
||||
winegcc \
|
||||
wmc \
|
||||
wrc
|
||||
|
||||
|
@ -45,21 +42,12 @@ fnt2bdf: fnt2bdf.o
|
|||
bin2res: bin2res.o
|
||||
$(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::
|
||||
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
||||
$(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)
|
||||
|
||||
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:
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Makefile
|
||||
winegcc
|
||||
winewrap
|
|
@ -0,0 +1,35 @@
|
|||
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:
|
Loading…
Reference in New Issue