52 lines
945 B
Makefile
52 lines
945 B
Makefile
DEFS = -DLEX_OUTPUT_ROOT="\"@LEX_OUTPUT_ROOT@\""
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
|
|
PROGRAMS = \
|
|
bin2res \
|
|
fnt2bdf \
|
|
makedep
|
|
|
|
C_SRCS = \
|
|
bin2res.c \
|
|
fnt2bdf.c \
|
|
makedep.c
|
|
|
|
SUBDIRS = \
|
|
widl \
|
|
winebuild \
|
|
winedump \
|
|
winegcc \
|
|
wmc \
|
|
wrc
|
|
|
|
INSTALLSUBDIRS = $(SUBDIRS)
|
|
|
|
EXTRASUBDIRS = winapi_check
|
|
|
|
all: $(PROGRAMS) $(SUBDIRS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
makedep: makedep.o
|
|
$(CC) $(CFLAGS) -o makedep makedep.o
|
|
|
|
fnt2bdf: fnt2bdf.o
|
|
$(CC) $(CFLAGS) -o fnt2bdf fnt2bdf.o $(LIBPORT)
|
|
|
|
bin2res: bin2res.o
|
|
$(CC) $(CFLAGS) -o bin2res bin2res.o $(LIBPORT)
|
|
|
|
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:
|