mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
51 lines
949 B
Makefile
51 lines
949 B
Makefile
DEFS = -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
PROGRAMS = build makedep fnt2bdf bin2res
|
|
MODULE = none
|
|
|
|
C_SRCS = build.c makedep.c fnt2bdf.c bin2res.c
|
|
|
|
SUBDIRS = \
|
|
cvdump \
|
|
wmc \
|
|
wrc
|
|
|
|
INSTALLSUBDIRS = \
|
|
wmc \
|
|
wrc
|
|
|
|
EXTRASUBDIRS = \
|
|
winapi_check \
|
|
winapi_check/win16 \
|
|
winapi_check/win32 \
|
|
wineconf.libs
|
|
|
|
all: $(PROGRAMS) wmc wrc
|
|
|
|
@MAKE_RULES@
|
|
|
|
build: build.o
|
|
$(CC) $(CFLAGS) -o build build.o
|
|
|
|
makedep: makedep.o
|
|
$(CC) $(CFLAGS) -o makedep makedep.o
|
|
|
|
fnt2bdf: fnt2bdf.o
|
|
$(CC) $(CFLAGS) -o fnt2bdf fnt2bdf.o
|
|
|
|
bin2res: bin2res.o
|
|
$(CC) $(CFLAGS) -o bin2res bin2res.o
|
|
|
|
install:: $(PROGRAMS) $(INSTALLSUBDIRS:%=%/__install__)
|
|
[ -d $(bindir) ] || $(MKDIR) $(bindir)
|
|
$(INSTALL_PROGRAM) build $(bindir)/winebuild
|
|
$(INSTALL_PROGRAM) fnt2bdf $(bindir)/fnt2bdf
|
|
|
|
uninstall:: $(PROGRAMS) $(INSTALLSUBDIRS:%=%/__uninstall__)
|
|
$(RM) $(bindir)/winebuild $(bindir)/fnt2bdf
|
|
|
|
### Dependencies:
|