Mercurial > audlegacy-plugins
comparison src/vtx/Makefile @ 1775:c78a88954801
vtx: Mk2
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 24 Sep 2007 11:27:01 -0500 |
parents | 26ff35aa9b2b |
children | eed7c270e8dd |
comparison
equal
deleted
inserted
replaced
1774:126bd42ca8a7 | 1775:c78a88954801 |
---|---|
1 include ../../mk/rules.mk | 1 include ../../extra.mk |
2 include ../../mk/init.mk | |
3 | 2 |
4 OBJECTIVE_LIBS = libvtx$(SHARED_SUFFIX) | 3 PLUGIN = vtx$(SHARED_SUFFIX) |
4 plugindir = audacious/$(INPUT_PLUGIN_DIR) | |
5 | 5 |
6 LIBDIR = $(plugindir)/$(INPUT_PLUGIN_DIR) | 6 SRCS = about.c ay8912.c config.c info.c lh5dec.c vtx.c vtxfile.c |
7 | 7 |
8 SOURCES = lh5dec.c ay8912.c about.c config.c info.c vtx.c vtxfile.c | 8 include ../../buildsys.mk |
9 | 9 |
10 OBJECTS = ${SOURCES:.c=.o} | 10 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) $(GLIB_CFLAGS) $(PANGO_CFLAGS) $(ARCH_DEFINES) -I../../intl -I../.. -Wall |
11 | 11 CPPFLAGS = $(CFLAGS) -I. |
12 LIBADD = $(VTX_LIBS) | 12 LIBS += $(GTK_LIBS) $(GLIB_LIBS) $(PANGO_LIBS) |
13 | |
14 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) -I. -I../../intl -I../.. -I../.. | |
15 | |
16 include ../../mk/objective.mk |