Mercurial > audlegacy
annotate Makefile @ 1618:425a9a172319 trunk
[svn] - do not show filepopup for blank region when a playlist is shorter than the playlist window.
author | yaz |
---|---|
date | Tue, 05 Sep 2006 08:40:08 -0700 |
parents | e402e0217870 |
children | 8d7f4260022d |
rev | line source |
---|---|
1207
c461cb49fc55
[svn] - if mk/rules.mk is missing, run configure to generate it (hopefully you are running the posix target, otherwise I feel sorry for you)
nenolod
parents:
1206
diff
changeset
|
1 .SILENT: |
c461cb49fc55
[svn] - if mk/rules.mk is missing, run configure to generate it (hopefully you are running the posix target, otherwise I feel sorry for you)
nenolod
parents:
1206
diff
changeset
|
2 |
1208
8014500e2c37
[svn] - shut a make error up by using sinclude instead of normal include when rules.mk doesn't exist yet
nenolod
parents:
1207
diff
changeset
|
3 sinclude mk/rules.mk |
1615
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1451
diff
changeset
|
4 include mk/init.mk |
1206 | 5 |
1451 | 6 SUBDIRS = Plugins libaudacious intl $(SUBDIR_GUESS) sqlite audacious audtool po icons skin |
1206 | 7 |
1615
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1451
diff
changeset
|
8 include mk/objective.mk |
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1451
diff
changeset
|
9 |
1206 | 10 install-posthook: |
11 @if test `whoami` = 'root' && test -z "$(DESTDIR)"; then \ | |
12 echo "[running ldconfig to update system library cache]"; \ | |
13 /sbin/ldconfig; \ | |
14 echo "[system library cache updated]"; \ | |
15 fi | |
16 | |
17 OBJECTIVE_DATA = \ | |
18 audacious.pc:$(LIBDIR)/pkgconfig \ | |
19 audacious.1:$(mandir)/man1 \ | |
20 audacious/audacious.desktop:$(datadir)/applications | |
1615
e402e0217870
[svn] - fix for the long-standing dependency oddness in our build system. now make tool surely picks up changed source files and builds required objectives.
yaz
parents:
1451
diff
changeset
|
21 |