Commit e6a824d5 authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

tools: Add a tool to build .x template files.

parent 0435b582
...@@ -276,6 +276,7 @@ server/wineserver-installed ...@@ -276,6 +276,7 @@ server/wineserver-installed
tools/fnt2bdf tools/fnt2bdf
tools/fnt2fon tools/fnt2fon
tools/make_ctests tools/make_ctests
tools/make_xftmpl
tools/makedep tools/makedep
tools/relpath tools/relpath
tools/sfnt2fnt tools/sfnt2fnt
......
...@@ -63,6 +63,7 @@ BUILDIMAGE = $(top_srcdir)/tools/buildimage ...@@ -63,6 +63,7 @@ BUILDIMAGE = $(top_srcdir)/tools/buildimage
C2MAN = $(top_srcdir)/tools/c2man.pl C2MAN = $(top_srcdir)/tools/c2man.pl
RUNTEST = $(top_srcdir)/tools/runtest RUNTEST = $(top_srcdir)/tools/runtest
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT) MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
MAKEXFTMPL = $(TOOLSDIR)/tools/make_xftmpl$(TOOLSEXT)
MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT) MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT) RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT) SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
......
...@@ -6,6 +6,7 @@ PROGRAMS = \ ...@@ -6,6 +6,7 @@ PROGRAMS = \
fnt2bdf$(EXEEXT) \ fnt2bdf$(EXEEXT) \
fnt2fon$(EXEEXT) \ fnt2fon$(EXEEXT) \
make_ctests$(EXEEXT) \ make_ctests$(EXEEXT) \
make_xftmpl$(EXEEXT) \
relpath$(EXEEXT) \ relpath$(EXEEXT) \
sfnt2fnt$(EXEEXT) \ sfnt2fnt$(EXEEXT) \
wine.inf \ wine.inf \
...@@ -21,6 +22,7 @@ C_SRCS = \ ...@@ -21,6 +22,7 @@ C_SRCS = \
fnt2bdf.c \ fnt2bdf.c \
fnt2fon.c \ fnt2fon.c \
make_ctests.c \ make_ctests.c \
make_xftmpl.c \
makedep.c \ makedep.c \
relpath.c \ relpath.c \
sfnt2fnt.c sfnt2fnt.c
...@@ -47,6 +49,9 @@ makedep$(EXEEXT) $(EXEEXT:%=makedep): makedep.o ...@@ -47,6 +49,9 @@ makedep$(EXEEXT) $(EXEEXT:%=makedep): makedep.o
make_ctests$(EXEEXT): make_ctests.o make_ctests$(EXEEXT): make_ctests.o
$(CC) $(CFLAGS) -o $@ make_ctests.o $(LDFLAGS) $(CC) $(CFLAGS) -o $@ make_ctests.o $(LDFLAGS)
make_xftmpl$(EXEEXT): make_xftmpl.o
$(CC) $(CFLAGS) -o $@ make_xftmpl.o $(LIBPORT) $(LDFLAGS)
fnt2bdf$(EXEEXT): fnt2bdf.o fnt2bdf$(EXEEXT): fnt2bdf.o
$(CC) $(CFLAGS) -o $@ fnt2bdf.o $(LIBPORT) $(LDFLAGS) $(CC) $(CFLAGS) -o $@ fnt2bdf.o $(LIBPORT) $(LDFLAGS)
......
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