* Makefile.in: (snapshot): Add target.
* lib/Makefile.in: (install-headers): Use installdir variable.
(installdir): Set value based on target-alias.
+2001-03-01 Earnie Boyd <earnie@users.sourceforge.net
+
+ * Makefile.in: (snapshot): Add target.
+ * lib/Makefile.in: (install-headers): Use installdir variable.
+ (installdir): Set value based on target-alias.
+
2001-02-21 Earnie Boyd <earnie@users.sourceforge.net
* include/w32api.h: (_W32API_VERSION): Remove.
(cd $$i; $(MAKE) $@); \
done
-distdir = $(PACKAGE)-$(VERSION)
+ifdef SNAPDATE
+ distdir = $(PACKAGE)-$(VERSION)-$(SNAPDATE)
+else
+ distdir = $(PACKAGE)-$(VERSION)
+endif
dist: srcdist bindist
rm -f $(distdir).tar.gz
cd $(distdir); $(TAR) czf ../$(distdir).tar.gz .
+snapshot:
+ make dist SNAPDATE=$(shell date '+%Y%m%d')
+
Makefile: Makefile.in config.status configure
$(SHELL) config.status
endif
datadir = @datadir@
infodir = @infodir@
+ifneq (,$(findstring cygwin,$(target_alias)))
+includedir = $(tooldir)/include/w32api
+else
includedir = @includedir@
+endif
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
done
install-headers:
- $(mkinstalldirs) $(tooldir)/include/w32api
+ $(mkinstalldirs) $(includedir)
for i in $(HEADERS); do \
- $(INSTALL_DATA) $(srcdir)/../include/$$i $(tooldir)/include/w32api/$$i ; \
+ $(INSTALL_DATA) $(srcdir)/../include/$$i $(includedir)/$$i ; \
done
# uninstall headers and libraries from a target specified directory