Mercurial > audlegacy
annotate Makefile @ 1695:3cf80d8a6d8d trunk
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
- A test build then revealed that we still had two .cpp files in
Plugins/Input/musepack, fixed that.
- Moved nenolod's fix from init.mk to objective.mk.
- Removed call to ldconfig in Makefile and replaced it with a hint to
call ldconfig manually, since ldconfig without parameters breaks some
systems (mainly OpenBSD).
- I hope I did not forget to list a change I did ;)
author | js |
---|---|
date | Fri, 15 Sep 2006 06:36:26 -0700 |
parents | 8d7f4260022d |
children | 19406038eb35 |
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 |
1693 | 3 include 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 \ | |
1695
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
12 echo; \ |
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
13 echo "WARNING:"; \ |
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
14 echo "On some systems, it might be required that you run"; \ |
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
15 echo "ldconfig. However, this isn't done automatically"; \ |
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
16 echo "because some ldconfig versions might break the system"; \ |
3cf80d8a6d8d
[svn] - Removed .cpp.o target since we don't have any .cpp files anymore.
js
parents:
1693
diff
changeset
|
17 echo "if it's called without any parameters."; \ |
1206 | 18 fi |
19 | |
20 OBJECTIVE_DATA = \ | |
21 audacious.pc:$(LIBDIR)/pkgconfig \ | |
22 audacious.1:$(mandir)/man1 \ | |
23 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
|
24 |