~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to support-files/Makefile.am

  • Committer: Monty Taylor
  • Date: 2008-11-16 23:47:43 UTC
  • mto: (584.1.10 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116234743-c38gmv0pa2kdefaj
Broke out cached_item.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim:ft=automake
2
 
 
3
1
# Copyright (C) 2000-2001, 2003-2006 MySQL AB
4
 
# Copyright (C) Brian Aker
5
2
#
6
3
# This library is free software; you can redistribute it and/or
7
4
# modify it under the terms of the GNU Library General Public
19
16
# MA 02111-1307, USA
20
17
 
21
18
pkgconfigdir = $(libdir)/pkgconfig
 
19
pkgconfig_DATA = libdrizzle.pc
22
20
 
23
21
# Default same as 'pkgdatadir', but we can override it
24
22
pkgsuppdir =            $(datadir)/@PACKAGE@
25
23
 
26
 
pkgsupp_DATA =          support-files/drizzle-log-rotate
27
 
 
28
 
pkgsupp_SCRIPTS =       support-files/drizzle.server 
29
 
 
30
 
 
31
 
EXTRA_DIST+= \
32
 
             support-files/smf/drizzle \
33
 
             support-files/smf/drizzle.xml \
34
 
             support-files/smf/install.sh \
35
 
             support-files/drizzle.spec
36
 
generic_rpm:
37
 
        rm -f ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm
38
 
        rm -f ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm
39
 
        cp drizzle-$(VERSION).tar.gz ~/rpmbuild/SOURCES/
40
 
        rpmbuild -ba support-files/drizzle.spec
41
 
        cp ~/rpmbuild/RPMS/x86_64/drizzle-$(VERSION)*.rpm .
42
 
        cp ~/rpmbuild/SRPMS/drizzle-$(VERSION)*.rpm .
43
 
 
44
 
rpm: dist generic_rpm
 
24
pkgsupp_DATA =          drizzle-log-rotate
 
25
 
 
26
pkgsupp_SCRIPTS =       drizzle.server 
 
27
 
 
28
aclocaldir =            $(datadir)/aclocal
 
29
aclocal_DATA =          drizzle.m4
 
30
 
 
31
EXTRA_DIST =            drizzle.m4
45
32