Mercurial > audlegacy
comparison src/audtool/Makefile @ 2313:3149d4b1a9a9 trunk
[svn] - objective-make autodepend fixes
- move all sourcecode into src/ and adjust Makefiles accordingly
author | nenolod |
---|---|
date | Fri, 12 Jan 2007 11:43:40 -0800 |
parents | |
children | 0358eb5783e6 |
comparison
equal
deleted
inserted
replaced
2312:e1a5a66fb9cc | 2313:3149d4b1a9a9 |
---|---|
1 include ../../mk/rules.mk | |
2 include ../../mk/init.mk | |
3 include ../../mk/objective.mk | |
4 | |
5 beepincludedir = $(includedir)/audacious | |
6 | |
7 OBJECTIVE_BINS = audtool | |
8 | |
9 LDFLAGS += $(AUDLDFLAGS) | |
10 LDADD = \ | |
11 -L../libaudacious -laudacious \ | |
12 $(GTK_LIBS) \ | |
13 $(LIBGLADE_LIBS) | |
14 | |
15 CFLAGS += \ | |
16 $(GTK_CFLAGS) \ | |
17 $(LIBGLADE_CFLAGS) \ | |
18 $(BEEP_DEFINES) \ | |
19 $(ARCH_DEFINES) \ | |
20 -I.. -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 $@ | |
29 @printf "%10s %-20s\n" LINK $@ |