~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to WPrefs.app/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = xpm tiff po
 
2
 
 
3
AUTOMAKE_OPTIONS = no-dependencies
 
4
 
 
5
wpexecbindir = @wprefsdir@
 
6
 
 
7
wpexecbin_PROGRAMS = WPrefs 
 
8
 
 
9
wpdatadir = @wprefsdir@
 
10
 
 
11
wpdata_DATA = WPrefs.tiff WPrefs.xpm
 
12
 
 
13
EXTRA_DIST = $(wpdata_DATA)
 
14
 
 
15
WPrefs_SOURCES = \
 
16
        main.c \
 
17
        WPrefs.c \
 
18
        WPrefs.h \
 
19
        Appearance.c \
 
20
        Configurations.c \
 
21
        Expert.c \
 
22
        Focus.c \
 
23
        FontSimple.c \
 
24
        Icons.c \
 
25
        KeyboardSettings.c \
 
26
        KeyboardShortcuts.c \
 
27
        Menu.c \
 
28
        MenuPreferences.c \
 
29
        MouseSettings.c \
 
30
        Paths.c \
 
31
        Preferences.c \
 
32
        TexturePanel.c \
 
33
        TexturePanel.h \
 
34
        Themes.c \
 
35
        WindowHandling.c \
 
36
        Workspace.c \
 
37
        double.c \
 
38
        double.h \
 
39
        editmenu.c \
 
40
        editmenu.h \
 
41
        imagebrowser.c \
 
42
        imagebrowser.h \
 
43
        xmodifier.c
 
44
 
 
45
AM_CPPFLAGS = -DLOCALEDIR=\"$(NLSDIR)\"
 
46
 
 
47
AM_CFLAGS = @NOSTRICTALIASING@
 
48
 
 
49
INCLUDES = -I$(top_srcdir)/wrlib -I$(top_srcdir)/WINGs @HEADER_SEARCH_PATH@ 
 
50
 
 
51
WPrefs_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.a
 
52
 
 
53
WPrefs_LDADD = \
 
54
        $(top_builddir)/WINGs/libWINGs.a\
 
55
        $(top_builddir)/wrlib/libwraster.la \
 
56
        @XFTLIBS@ \
 
57
        @INTLIBS@
 
58