buildsys  Check-in [deea07358c]

Overview
Comment:Touch .deps files on ./configure.
This also makes it compatible with OpenBSD make.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: deea07358ce8a5a3f95ff299515b6f1c0fafc7e70e206c72a492c65f01b1988a
User & Date: js on 2008-11-01 18:55:32
Other Links: manifest | tags
Context
2008-11-01
19:09
Move one line to fix dependency generation. check-in: baeb4314f3 user: js tags: trunk
18:55
Touch .deps files on ./configure.
This also makes it compatible with OpenBSD make.
check-in: deea07358c user: js tags: trunk
2008-10-02
21:34
Use ranlib. check-in: bceeee6eed user: js tags: trunk
Changes

Modified buildsys.mk.in from [c91f0d600d] to [2e95fe4692].

438
439
440
441
442
443
444
445
LINK_FAILED = printf "\033[K\033[0;31mFailed to link \033[1;31m$@\033[0;31m!\033[0m\n"; exit 1
INSTALL_STATUS = printf "\033[K\033[0;33mInstalling \033[1;33m$$i\033[0;33m...\033[0m\r"
INSTALL_OK = printf "\033[K\033[0;32mSuccessfully installed \033[1;32m$$i\033[0;32m.\033[0m\n"
INSTALL_FAILED = printf "\033[K\033[0;31mFailed to install \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
DELETE_OK = printf "\033[K\033[0;34mDeleted \033[1;34m$$i\033[0;34m.\033[0m\n"
DELETE_FAILED = printf "\033[K\033[0;31mFailed to delete \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1

-include .deps







|
438
439
440
441
442
443
444
445
LINK_FAILED = printf "\033[K\033[0;31mFailed to link \033[1;31m$@\033[0;31m!\033[0m\n"; exit 1
INSTALL_STATUS = printf "\033[K\033[0;33mInstalling \033[1;33m$$i\033[0;33m...\033[0m\r"
INSTALL_OK = printf "\033[K\033[0;32mSuccessfully installed \033[1;32m$$i\033[0;32m.\033[0m\n"
INSTALL_FAILED = printf "\033[K\033[0;31mFailed to install \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1
DELETE_OK = printf "\033[K\033[0;34mDeleted \033[1;34m$$i\033[0;34m.\033[0m\n"
DELETE_FAILED = printf "\033[K\033[0;31mFailed to delete \033[1;31m$$i\033[0;31m!\033[0m\n"; exit 1

include .deps

Modified m4/buildsys.m4 from [e71beefcc6] to [dc9da6398d].

128
129
130
131
132
133
134







	AC_SUBST(PLUGIN_CFLAGS)
	AC_SUBST(PLUGIN_LDFLAGS)
	AC_SUBST(PLUGIN_SUFFIX)
	AC_SUBST(INSTALL_LIB)
	AC_SUBST(UNINSTALL_LIB)
	AC_SUBST(CLEAN_LIB)
])














>
>
>
>
>
>
>
128
129
130
131
132
133
134
135
136
137
138
139
140
141
	AC_SUBST(PLUGIN_CFLAGS)
	AC_SUBST(PLUGIN_LDFLAGS)
	AC_SUBST(PLUGIN_SUFFIX)
	AC_SUBST(INSTALL_LIB)
	AC_SUBST(UNINSTALL_LIB)
	AC_SUBST(CLEAN_LIB)
])

AC_DEFUN([BUILDSYS_TOUCH_DEPS], [
	$as_echo "$as_me: Touching .deps files"
	for i in $(find . -name Makefile); do
		touch $(dirname $i)/.deps
	done
])