~psusi/ubuntu/precise/dmraid/fix-gpt

« back to all changes in this revision

Viewing changes to 1.0.0.rc15/include/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Giuseppe Iuculano, 6af052c
  • Date: 2009-03-25 22:34:59 UTC
  • mfrom: (2.1.9 sid)
  • mto: (2.4.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20090325223459-y54f0rmxem7htn6r
Tags: 1.0.0.rc15-6
[6af052c] Remove 15_isw_incorrect_status_fix.patch, it causes a
segfault. (Closes: #521104)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright (C) 2005  Heinz Mauelshagen, Red Hat GmbH. All rights reserved.
 
3
#
 
4
# See file LICENSE at the top of this source tree for license information.
 
5
#
 
6
 
 
7
srcdir = @srcdir@
 
8
top_srcdir = @top_srcdir@
 
9
 
 
10
HEADERS=$(wildcard dmraid/*.h)
 
11
 
 
12
all:
 
13
 
 
14
include $(top_srcdir)/make.tmpl
 
15
 
 
16
.PHONY: install_dmraid_headers remove_dmraid_headers
 
17
 
 
18
install_dmraid_headers: $(HEADERS)
 
19
        @echo "Installing $(HEADERS) in $(includedir)/dmraid"
 
20
        mkdir -p $(includedir)/dmraid
 
21
        $(INSTALL) $(STRIP) $(HEADERS) $(includedir)/dmraid
 
22
 
 
23
install: install_dmraid_headers
 
24
 
 
25
remove_dmraid_headers:
 
26
        @echo "Removing $(HEADERS) from $(includedir)/dmraid"
 
27
        rm -f $(includedir)/dmraid
 
28
 
 
29
remove:        remove_dmraid_headers
 
30
 
 
31
clean: