Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e6a824d5
Commit
e6a824d5
authored
Apr 28, 2011
by
Dylan Smith
Committed by
Alexandre Julliard
May 05, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools: Add a tool to build .x template files.
parent
0435b582
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
0 deletions
+7
-0
.gitignore
.gitignore
+1
-0
Make.vars.in
Make.vars.in
+1
-0
Makefile.in
tools/Makefile.in
+5
-0
make_xftmpl.c
tools/make_xftmpl.c
+0
-0
No files found.
.gitignore
View file @
e6a824d5
...
...
@@ -276,6 +276,7 @@ server/wineserver-installed
tools/fnt2bdf
tools/fnt2fon
tools/make_ctests
tools/make_xftmpl
tools/makedep
tools/relpath
tools/sfnt2fnt
...
...
Make.vars.in
View file @
e6a824d5
...
...
@@ -63,6 +63,7 @@ BUILDIMAGE = $(top_srcdir)/tools/buildimage
C2MAN = $(top_srcdir)/tools/c2man.pl
RUNTEST = $(top_srcdir)/tools/runtest
MAKECTESTS = $(TOOLSDIR)/tools/make_ctests$(TOOLSEXT)
MAKEXFTMPL = $(TOOLSDIR)/tools/make_xftmpl$(TOOLSEXT)
MAKEDEP = $(TOOLSDIR)/tools/makedep$(TOOLSEXT)
RELPATH = $(TOOLSDIR)/tools/relpath$(TOOLSEXT)
SFNT2FNT = $(TOOLSDIR)/tools/sfnt2fnt$(TOOLSEXT)
...
...
tools/Makefile.in
View file @
e6a824d5
...
...
@@ -6,6 +6,7 @@ PROGRAMS = \
fnt2bdf
$(EXEEXT)
\
fnt2fon
$(EXEEXT)
\
make_ctests
$(EXEEXT)
\
make_xftmpl
$(EXEEXT)
\
relpath
$(EXEEXT)
\
sfnt2fnt
$(EXEEXT)
\
wine.inf
\
...
...
@@ -21,6 +22,7 @@ C_SRCS = \
fnt2bdf.c
\
fnt2fon.c
\
make_ctests.c
\
make_xftmpl.c
\
makedep.c
\
relpath.c
\
sfnt2fnt.c
...
...
@@ -47,6 +49,9 @@ makedep$(EXEEXT) $(EXEEXT:%=makedep): makedep.o
make_ctests$(EXEEXT)
:
make_ctests.o
$(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
$(CC)
$(CFLAGS)
-o
$@
fnt2bdf.o
$(LIBPORT)
$(LDFLAGS)
...
...
tools/make_xftmpl.c
0 → 100644
View file @
e6a824d5
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment