Mercurial > audlegacy
annotate audtool/Makefile @ 1520:b41b45bc86b9 trunk
[svn] - fix an oops
author | nenolod |
---|---|
date | Mon, 07 Aug 2006 21:34:12 -0700 |
parents | 04730ff1693d |
children | e402e0217870 |
rev | line source |
---|---|
1210 | 1 include ../mk/rules.mk |
2 include ../mk/objective.mk | |
3 | |
4 beepincludedir = $(includedir)/audacious | |
5 | |
6 OBJECTIVE_BINS = audtool | |
7 | |
8 LDFLAGS += -Wl,-export-dynamic | |
9 LDADD = \ | |
1455
04730ff1693d
[svn] changes link order to avoid linkage with installed library.
yaz
parents:
1210
diff
changeset
|
10 -L.. $(LTLIBINTL) \ |
04730ff1693d
[svn] changes link order to avoid linkage with installed library.
yaz
parents:
1210
diff
changeset
|
11 -L../libaudacious -laudacious \ |
1210 | 12 $(GTK_LIBS) \ |
1455
04730ff1693d
[svn] changes link order to avoid linkage with installed library.
yaz
parents:
1210
diff
changeset
|
13 $(LIBGLADE_LIBS) |
1210 | 14 |
15 CFLAGS += \ | |
16 $(GTK_CFLAGS) \ | |
17 $(LIBGLADE_CFLAGS) \ | |
18 $(BEEP_DEFINES) \ | |
19 $(ARCH_DEFINES) \ | |
20 -I.. \ | |
21 -I../intl | |
22 | |
23 SOURCES = audtool.c | |
24 | |
25 OBJECTS = ${SOURCES:.c=.o} | |
26 | |
27 audtool: $(OBJECTS) | |
28 $(CC) $(LDFLAGS) $(OBJECTS) $(LDADD) -o $@ -Wl,-rpath,${libdir} | |
29 @printf "%10s %-20s\n" LINK $@ |