[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
timer-applet 1.3.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,236 kB
  • ctags: 345
  • sloc: ansic: 3,781; sh: 869; xml: 301; makefile: 143
file content (41 lines) | stat: -rw-r--r-- 979 bytes parent folder | download
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
39
40
41
## Process this file with automake to produce Makefile.in
SUBDIRS = gloo
AM_CPPFLAGS = -DGNOMELOCALEDIR=\""$(datadir)/locale/"\" \
	-DG_LOG_DOMAIN=\""Timer Applet"\" \
	-DPIXMAPS_DIR=\""$(datadir)/pixmaps/timer-applet"\" \
	-DSOUNDS_DIR=\""$(datadir)/sounds/gtk-events"\" \
	-DDATADIR=\""$(datadir)"\" \
	-DLIBDIR=\""$(libdir)"\" \
	-DSYSCONFDIR=\""$(sysconfdir)"\" \
	-DPREFIX=\""$(prefix)"\" \
	$(GNOME_CFLAGS) \
	$(LIBNOTIFY_CFLAGS)

AM_CFLAGS = -Wall -Werror

LIBS = $(GNOME_LIBS) \
	$(LIBNOTIFY_LIBS)

libexec_PROGRAMS = timer-applet

timer_applet_LDADD = $(top_builddir)/src/gloo/libgloo.a

timer_applet_SOURCES = main.c \
		about-dialog.c \
		about-dialog.h \
		add-preset-dialog.c \
		add-preset-dialog.h \
		layout-utils.c \
		layout-utils.h \
		manage-presets-window.c \
		manage-presets-window.h \
		prefs-dialog.c \
		prefs-dialog.h \
		presets-manager.c \
		presets-manager.h \
		start-timer-dialog.c \
		start-timer-dialog.h \
		timer-applet.c \
		timer-applet.h