~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to support-files/Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-04-25 20:45:19 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 1003.
  • Revision ID: mordred@inaugust.com-20090425204519-lgrl7mz2r66v0jby
Blackhole.

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
23
20
# Default same as 'pkgdatadir', but we can override it
24
21
pkgsuppdir =            $(datadir)/@PACKAGE@
25
22
 
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
 
23
pkgsupp_DATA =          drizzle-log-rotate
 
24
 
 
25
pkgsupp_SCRIPTS =       drizzle.server 
 
26
 
 
27
aclocaldir =            $(datadir)/aclocal
 
28
aclocal_DATA =          drizzle.m4
 
29
 
 
30
EXTRA_DIST =            drizzle.m4
45
31