1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = GNOME_NetmonApplet_Factory.server.in netmon.schemas.in \
netmon_applet.png support.h interface.h callbacks.h data.h
bin_PROGRAMS = netmon_applet
INCLUDES = \
-I$(srcdir) -I$(srcdir)/pixmaps \
-DGNOMELOCALEDIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
-DGTK_ENABLE_BROKEN \
$(GNOME_APPLETS_CFLAGS) \
$(GNOME_VFS_APPLETS_CFLAGS)
netmon_applet_SOURCES = gnome-ui.c properties.c \
support.c interface.c \
linux-data.c solaris-data.c
netmon_applet_LDADD = $(GNOME_APPLETS_LIBS)
serverdir = $(GNOME_DIR)/lib/bonobo/servers
server_in_files = GNOME_NetmonApplet_Factory.server.in
server_DATA = $(server_in_files:.server.in=.server)
pixmapdir = $(GNOME_DIR)/share/pixmaps
pixmap_in_files = netmon_applet.png
pixmap_DATA = netmon_applet.png
schemasdir = $(sysconfdir)/gconf/schemas
schemas_in_files = netmon.schemas.in
schemas_DATA = $(schemas_in_files:.schemas.in=.schemas)
install-data-local:
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schemas_DATA)
# AM_CFLAGS=-Wall -g
|