comparison src/aosd/Makefile @ 569:d401f87f89f7 trunk

[svn] - added Audacious OSD, yet-another-written-from-scratch plugin to display OSD, based on Ghosd library; currently untied from configure, to compile it you have to run make in its directory; will be added to configure after some testing
author giacomo
date Mon, 29 Jan 2007 06:40:04 -0800
parents
children 643de80b5bf1
comparison
equal deleted inserted replaced
568:8c64b5abdcda 569:d401f87f89f7
1 include ../../mk/rules.mk
2 include ../../mk/init.mk
3
4 OBJECTIVE_LIBS = libaosd$(SHARED_SUFFIX)
5
6 noinst_HEADERS = aosd.h aosd_osd.h aosd_style.h aosd_ui.h aosd_cfg.h aosd_common.h ghosd.h ghosd-text.h ghosd-internal.h
7
8 LIBDIR = $(plugindir)/$(GENERAL_PLUGIN_DIR)
9
10 LIBADD = $(GTK_LIBS)
11 SOURCES = aosd.c aosd_osd.c aosd_style.c aosd_ui.c aosd_cfg.c ghosd.c ghosd-text.c ghosd-main.c
12
13 OBJECTS = ${SOURCES:.c=.o}
14
15 CFLAGS += $(PICFLAGS) $(GTK_CFLAGS) \
16 -I../../intl -I../.. -I..
17
18 include ../../mk/objective.mk