2011-12-12 21:02:33 +01:00
|
|
|
# @configure_input@
|
2000-02-17 20:38:33 +01:00
|
|
|
#
|
|
|
|
#
|
2011-12-12 21:02:33 +01:00
|
|
|
# Makefile.in
|
|
|
|
#
|
|
|
|
# This file is part of a free library for the Win32 API.
|
2012-01-15 13:20:09 +01:00
|
|
|
|
|
|
|
PACKAGE = @PACKAGE_TARNAME@
|
|
|
|
VERSION = @PACKAGE_VERSION@
|
|
|
|
RELEASE = @PACKAGE_RELEASE@
|
|
|
|
|
2011-12-12 21:02:33 +01:00
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
SHELL = @SHELL@
|
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
2002-10-14 21:59:04 +02:00
|
|
|
target_alias = @target@
|
2002-05-21 18:50:13 +02:00
|
|
|
conf_prefix = @prefix@
|
2008-09-07 04:07:29 +02:00
|
|
|
# FIXME: this needs an appropriate AC_SUBST
|
|
|
|
host_os = mingw32
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
TAR = tar
|
2010-08-27 23:11:29 +02:00
|
|
|
TARFLAGS = --lzma -
|
|
|
|
TARFILEEXT = .tar.lzma
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
SUBDIRS = lib
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2011-12-10 18:24:25 +01:00
|
|
|
DISTFILES = \
|
2012-01-06 23:01:15 +01:00
|
|
|
ChangeLog configure.ac Makefile.in Makefile.comm.in configure \
|
|
|
|
config.guess config.sub install-sh README.w32api TODO CONTRIBUTIONS
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2012-01-15 13:27:13 +01:00
|
|
|
all: $(SUBDIRS)
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
%-subdirs:
|
|
|
|
for i in $(SUBDIRS); do \
|
2011-12-12 21:02:33 +01:00
|
|
|
$(MAKE) -C $$i $*; \
|
2000-10-19 22:56:51 +02:00
|
|
|
done
|
|
|
|
|
2012-01-15 13:27:13 +01:00
|
|
|
$(SUBDIRS):
|
2011-12-12 21:02:33 +01:00
|
|
|
$(MAKE) -C $@
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
test:
|
2011-12-12 21:02:33 +01:00
|
|
|
$(MAKE) -C lib test
|
2000-10-19 22:56:51 +02:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
install uninstall:
|
|
|
|
for i in $(SUBDIRS); do \
|
2011-12-12 21:02:33 +01:00
|
|
|
(cd $$i; $(MAKE) $@); \
|
2000-10-19 22:56:51 +02:00
|
|
|
done
|
|
|
|
|
2001-03-01 21:32:34 +01:00
|
|
|
ifdef SNAPDATE
|
2008-09-07 04:07:29 +02:00
|
|
|
distdir = $(PACKAGE)-$(VERSION)-$(SNAPDATE)-$(host_os)
|
2001-03-01 21:32:34 +01:00
|
|
|
else
|
2012-01-15 13:20:09 +01:00
|
|
|
CYGRELEASE = $(RELEASE)
|
2001-09-12 16:48:07 +02:00
|
|
|
ifneq (,$(findstring cygwin, $(target_alias)))
|
|
|
|
distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE)
|
|
|
|
else
|
2010-08-27 23:11:29 +02:00
|
|
|
distdir=$(PACKAGE)-$(VERSION)-$(CYGRELEASE)-$(host_os)
|
2001-09-12 16:48:07 +02:00
|
|
|
endif
|
2001-03-01 21:32:34 +01:00
|
|
|
endif
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-06-14 14:36:26 +02:00
|
|
|
ifneq (,$(findstring mingw, $(target_alias)))
|
|
|
|
dist_prefix=
|
|
|
|
else
|
|
|
|
dist_prefix=/$(conf_prefix)
|
|
|
|
endif
|
|
|
|
|
2001-09-12 22:24:06 +02:00
|
|
|
ifneq (,$(findstring cygwin, $(target_alias)))
|
|
|
|
TARFLAGS = j
|
|
|
|
TARFILEEXT = .tar.bz2
|
|
|
|
endif
|
|
|
|
|
2000-11-06 17:17:16 +01:00
|
|
|
dist: srcdist bindist
|
|
|
|
|
|
|
|
srcdist:
|
2000-10-20 06:39:21 +02:00
|
|
|
rm -rf $(distdir)
|
|
|
|
mkdir $(distdir)
|
|
|
|
chmod 755 $(distdir)
|
2011-12-10 18:24:25 +01:00
|
|
|
for i in $(DISTFILES); do \
|
2000-10-20 06:39:21 +02:00
|
|
|
cp -p $(srcdir)/$$i $(distdir)/$$i ; \
|
2000-02-17 20:38:33 +01:00
|
|
|
done
|
2000-10-20 06:39:21 +02:00
|
|
|
for i in $(SUBDIRS); do \
|
|
|
|
(cd $$i; $(MAKE) distdir=../$(distdir) dist); \
|
2000-02-17 20:38:33 +01:00
|
|
|
done
|
2001-09-12 22:24:06 +02:00
|
|
|
rm -f $(distdir)-src$(TARFILEEXT)
|
|
|
|
$(TAR) $(TARFLAGS)cf $(distdir)-src$(TARFILEEXT) $(distdir)
|
2000-10-20 06:39:21 +02:00
|
|
|
|
2008-09-07 04:07:29 +02:00
|
|
|
ifneq (,$(findstring cygwin, $(target_alias)))
|
2000-10-20 06:39:21 +02:00
|
|
|
bindist:
|
|
|
|
rm -rf $(distdir)
|
|
|
|
mkdir $(distdir)
|
|
|
|
chmod 755 $(distdir)
|
2003-03-11 15:44:58 +01:00
|
|
|
$(MAKE) install prefix=`pwd`/$(distdir)$(dist_prefix) exec_prefix=`pwd`/$(distdir)$(dist_prefix)
|
2001-09-12 22:24:06 +02:00
|
|
|
rm -f $(distdir)$(TARFILEEXT)
|
2002-04-10 00:06:54 +02:00
|
|
|
cd $(distdir); $(TAR) $(TARFLAGS)cf ../$(distdir)$(TARFILEEXT) *
|
2008-09-07 04:07:29 +02:00
|
|
|
else
|
|
|
|
bindist:
|
|
|
|
rm -rf $(distdir)
|
|
|
|
mkdir $(distdir)
|
|
|
|
chmod 755 $(distdir)
|
|
|
|
$(MAKE) install prefix=`pwd`/$(distdir)$(dist_prefix) exec_prefix=`pwd`/$(distdir)$(dist_prefix)
|
|
|
|
rm -f $(distdir)$(TARFILEEXT)
|
|
|
|
cd $(distdir); $(TAR) $(TARFLAGS)cf ../$(distdir)-dev$(TARFILEEXT) *
|
|
|
|
endif
|
2000-10-20 06:39:21 +02:00
|
|
|
|
2001-03-01 21:32:34 +01:00
|
|
|
snapshot:
|
|
|
|
make dist SNAPDATE=$(shell date '+%Y%m%d')
|
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
Makefile: Makefile.in config.status configure
|
|
|
|
$(SHELL) config.status
|
|
|
|
|
|
|
|
mostlyclean-top:
|
|
|
|
rm -f *~
|
2012-01-15 13:20:09 +01:00
|
|
|
|
2000-11-06 17:17:16 +01:00
|
|
|
clean-top: mostlyclean-top
|
2000-10-20 06:39:21 +02:00
|
|
|
rm -rf $(distdir)
|
2001-09-12 22:24:06 +02:00
|
|
|
rm -f $(distdir)*$(TARFILEEXT)
|
2000-10-20 06:39:21 +02:00
|
|
|
maintainer-clean-top:
|
|
|
|
|
|
|
|
mostlyclean: mostlyclean-top mostlyclean-subdirs
|
2012-01-15 13:20:09 +01:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
clean: mostlyclean-top clean-subdirs
|
2012-01-15 13:20:09 +01:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
distclean: clean-top
|
2006-09-11 00:55:43 +02:00
|
|
|
$(MAKE) -C lib/directx distclean
|
|
|
|
$(MAKE) -C lib/ddk distclean
|
2000-10-20 06:39:21 +02:00
|
|
|
$(MAKE) -C lib distclean
|
2006-09-11 00:55:43 +02:00
|
|
|
rm -f Makefile config.status config.log config.cache TAGS *~
|
2012-01-15 13:20:09 +01:00
|
|
|
|
2000-10-20 06:39:21 +02:00
|
|
|
maintainer-clean: maintainer-clean-subdirs
|
|
|
|
|
2000-11-06 17:17:16 +01:00
|
|
|
.PHONY: lib test
|
2012-01-15 13:20:09 +01:00
|
|
|
|
|
|
|
# Makefile.in: end of file
|