Mercurial > audlegacy
annotate audacious/widgets/Makefile @ 2065:598564ddc4e9 trunk
[svn] - no, this is not going to work
| author | nenolod |
|---|---|
| date | Thu, 07 Dec 2006 00:22:55 -0800 |
| parents | f15664434382 |
| children |
| rev | line source |
|---|---|
| 1653 | 1 include ../../mk/rules.mk |
| 2 include ../../mk/init.mk | |
| 3 | |
| 4 OBJECTIVE_LIBS_NOINST = libwidgets.a | |
| 5 | |
| 6 LDFLAGS += -Wl,-export-dynamic | |
| 7 | |
| 8 CFLAGS += \ | |
| 9 $(GTK_CFLAGS) \ | |
| 10 $(LIBGLADE_CFLAGS) \ | |
| 11 $(BEEP_DEFINES) \ | |
| 12 $(ARCH_DEFINES) \ | |
| 1744 | 13 -D_AUDACIOUS_CORE \ |
| 1653 | 14 -I../.. \ |
| 15 -I.. \ | |
| 16 -I../../intl \ | |
|
1716
320ce198ab34
[svn] Our code is clean enough to not need -Wno-strict-aliasing, with the exception of playlist_list.c (so set that flag for widgets dir only).
chainsaw
parents:
1680
diff
changeset
|
17 -Wno-strict-aliasing |
| 1653 | 18 |
| 19 SOURCES = \ | |
| 20 widget.c \ | |
| 21 sbutton.c \ | |
| 22 pbutton.c \ | |
| 23 tbutton.c \ | |
| 24 textbox.c \ | |
| 25 hslider.c \ | |
| 26 menurow.c \ | |
| 27 monostereo.c \ | |
| 28 vis.c \ | |
| 29 svis.c \ | |
| 30 number.c \ | |
| 31 playstatus.c \ | |
| 32 playlist_list.c \ | |
| 33 playlist_slider.c \ | |
| 34 eq_graph.c \ | |
| 35 eq_slider.c \ | |
| 36 skin.c | |
| 37 | |
| 38 OBJECTS = ${SOURCES:.c=.o} | |
| 39 | |
| 40 include ../../mk/objective.mk | |
|
1680
92b4af21e6d2
[svn] Fixed some Makefiles to make it work with BSD make.
js
parents:
1653
diff
changeset
|
41 |
|
92b4af21e6d2
[svn] Fixed some Makefiles to make it work with BSD make.
js
parents:
1653
diff
changeset
|
42 libwidgets.a: $(OBJECTS) |
| 2026 | 43 $(AR) cr $@ $(OBJECTS) |
