~tualatrix/ubuntu-tweak/ubuntu-packing

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: tualatrix
  • Date: 2007-11-08 15:07:03 UTC
  • Revision ID: git-v1:8d117e376f9c8db00737c22904dccb48f7aac788
add the new sources of Ubuntu Tweak 0.2

git-svn-id: https://ubuntu-tweak.googlecode.com/svn/trunk@61 89e9d5ea-4437-0410-aedb-dd2c2f29ea1f

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS = po src pixmaps 
 
2
 
 
3
ubuntu_tweakdocdir = ${prefix}/@NO_PREFIX_PACKAGE_DOC_DIR@
 
4
ubuntu_tweakdoc_DATA = \
 
5
        README\
 
6
        COPYING\
 
7
        AUTHORS\
 
8
        ChangeLog\
 
9
        INSTALL\
 
10
        NEWS\
 
11
        TODO
 
12
 
 
13
EXTRA_DIST = $(ubuntu_tweakdoc_DATA)
 
14
 
 
15
gnomemenudir = $(prefix)/@NO_PREFIX_PACKAGE_MENU_DIR@
 
16
gnomemenu_DATA = ubuntu-tweak.desktop
 
17
 
 
18
# Copy all the spec files. Of cource, only one is actually used.
 
19
dist-hook:
 
20
        for specfile in *.spec; do \
 
21
                if test -f $$specfile; then \
 
22
                        cp -p $$specfile $(distdir); \
 
23
                fi \
 
24
        done
 
25