mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
7307e2be69
Also rename to sfnt2fon to better reflect usage and avoid conflicts with the previous binary on updates.
10 lines
229 B
Makefile
10 lines
229 B
Makefile
PROGRAMS = sfnt2fon$(EXEEXT)
|
|
|
|
C_SRCS = sfnt2fon.c
|
|
|
|
EXTRAINCL = $(FREETYPE_CFLAGS)
|
|
EXTRALIBS = $(FREETYPE_LIBS)
|
|
|
|
sfnt2fon$(EXEEXT): sfnt2fon.o
|
|
$(CC) $(CFLAGS) -o $@ sfnt2fon.o $(LIBWINE_STATIC) $(LIBPORT) $(EXTRALIBS) $(LDFLAGS)
|