annotate Makefile.in @ 629:1fad8c7a117c trunk

[svn] Trim the header a bit too.
author chainsaw
date Wed, 08 Feb 2006 16:08:04 -0800
parents 502b46145121
children b1d40a19466b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
563
0879e7ad85b1 [svn] some buildsystem changes... nothing notable yet
nenolod
parents:
diff changeset
1 include mk/rules.mk
0879e7ad85b1 [svn] some buildsystem changes... nothing notable yet
nenolod
parents:
diff changeset
2 include mk/objective.mk
0879e7ad85b1 [svn] some buildsystem changes... nothing notable yet
nenolod
parents:
diff changeset
3
0879e7ad85b1 [svn] some buildsystem changes... nothing notable yet
nenolod
parents:
diff changeset
4 SUBDIRS = Plugins libaudacious audacious po icons skin intl
613
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
5
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
6 install-posthook:
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
7 @if test `whoami` = 'root'; then \
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
8 echo "[running ldconfig to update system library cache]"; \
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
9 ldconfig; \
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
10 echo "[system library cache updated]"; \
502b46145121 [svn] Run ldconfig as an install-posthook operation, some systems need it.
nenolod
parents: 563
diff changeset
11 fi