Added exe extensions for mingw32.

oldstable
Detlef Riekenberg 2005-08-08 15:02:29 +00:00 committed by Alexandre Julliard
parent adc317c5cc
commit 0596fe152f
1 changed files with 19 additions and 18 deletions

View File

@ -3,17 +3,18 @@ TOPSRCDIR = @top_srcdir@
TOPOBJDIR = .. TOPOBJDIR = ..
SRCDIR = @srcdir@ SRCDIR = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
EXEEXT = @EXEEXT@
MODULE = none MODULE = none
EXTRAINCL = @FREETYPEINCL@ EXTRAINCL = @FREETYPEINCL@
FREETYPELIBS = @FREETYPELIBS@ FREETYPELIBS = @FREETYPELIBS@
PROGRAMS = \ PROGRAMS = \
bin2res \ bin2res$(EXEEXT) \
fnt2bdf \ fnt2bdf$(EXEEXT) \
fnt2fon \ fnt2fon$(EXEEXT) \
make_ctests \ make_ctests$(EXEEXT) \
makedep \ makedep$(EXEEXT) \
sfnt2fnt \ sfnt2fnt$(EXEEXT) \
wineprefixcreate wineprefixcreate
C_SRCS = \ C_SRCS = \
@ -42,23 +43,23 @@ all: $(PROGRAMS) $(SUBDIRS)
@MAKE_RULES@ @MAKE_RULES@
makedep: makedep.o makedep$(EXEEXT): makedep.o
$(CC) $(CFLAGS) -o makedep makedep.o $(CC) $(CFLAGS) -o $@ makedep.o
make_ctests: make_ctests.o make_ctests$(EXEEXT): make_ctests.o
$(CC) $(CFLAGS) -o make_ctests make_ctests.o $(CC) $(CFLAGS) -o $@ make_ctests.o
fnt2bdf: fnt2bdf.o fnt2bdf$(EXEEXT): fnt2bdf.o
$(CC) $(CFLAGS) -o fnt2bdf fnt2bdf.o $(LIBPORT) $(CC) $(CFLAGS) -o $@ fnt2bdf.o $(LIBPORT)
fnt2fon: fnt2fon.o fnt2fon$(EXEEXT): fnt2fon.o
$(CC) $(CFLAGS) -o fnt2fon fnt2fon.o $(LIBPORT) $(CC) $(CFLAGS) -o $@ fnt2fon.o $(LIBPORT)
sfnt2fnt: sfnt2fnt.o sfnt2fnt$(EXEEXT): sfnt2fnt.o
$(CC) $(CFLAGS) -o sfnt2fnt sfnt2fnt.o $(LIBUNICODE) $(LIBPORT) $(FREETYPELIBS) $(CC) $(CFLAGS) -o $@ sfnt2fnt.o $(LIBUNICODE) $(LIBPORT) $(FREETYPELIBS)
bin2res: bin2res.o bin2res$(EXEEXT): bin2res.o
$(CC) $(CFLAGS) -o bin2res bin2res.o $(LIBPORT) $(CC) $(CFLAGS) -o $@ bin2res.o $(LIBPORT)
wineprefixcreate: wineprefixcreate.in wineprefixcreate: wineprefixcreate.in
sed -e 's,@dlldir\@,$(dlldir),g' -e 's,@datadir\@,$(datadir),g' $(SRCDIR)/wineprefixcreate.in >$@ || ($(RM) $@ && false) sed -e 's,@dlldir\@,$(dlldir),g' -e 's,@datadir\@,$(datadir),g' $(SRCDIR)/wineprefixcreate.in >$@ || ($(RM) $@ && false)