mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
f673b71ece
yet. Added install-lib and install-dev targets to allow partial installations; moved winemaker.man and winelauncher.in to better fit in the new install categories.
47 lines
973 B
Makefile
47 lines
973 B
Makefile
DEFS = -D__WINE__ -DNO_LIBWINE -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
PROGRAMS = makedep fnt2bdf bin2res
|
|
MODULE = none
|
|
|
|
C_SRCS = makedep.c fnt2bdf.c bin2res.c
|
|
|
|
SUBDIRS = \
|
|
winebuild \
|
|
winedump \
|
|
wmc \
|
|
wrc
|
|
|
|
INSTALLSUBDIRS = $(SUBDIRS)
|
|
|
|
EXTRASUBDIRS = \
|
|
winapi_check \
|
|
winapi_check/win16 \
|
|
winapi_check/win32 \
|
|
wineconf.libs
|
|
|
|
all: $(PROGRAMS) $(SUBDIRS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
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::
|
|
$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
|
|
$(INSTALL_SCRIPT) $(SRCDIR)/winemaker $(bindir)/winemaker
|
|
$(INSTALL_DATA) $(SRCDIR)/winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winemaker $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
|
|
|
|
### Dependencies:
|