~ubuntu-branches/ubuntu/saucy/s390-tools/saucy

« back to all changes in this revision

Viewing changes to osasnmpd/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2008-07-15 23:55:41 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080715235541-r79vu6eqh4qim413
Tags: 1.6.2-1
* New upstream version.
* Install udev rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
include Makefile.rules
3
3
include ../common.mak
4
4
 
5
 
 
6
5
DIRS = osasnmpd-2.4 osasnmpd-2.6
7
6
 
8
7
all:
9
8
        for i in $(DIRS); do make -C $$i; done
10
9
 
11
 
 
12
10
clean:
13
11
        for i in $(DIRS); do make clean -C $$i; done
14
12
 
15
 
install:
16
 
        $(INSTALL) -d -m 755 $(SNMPDIR) $(MANDIR)/man8
 
13
install: all
 
14
        $(INSTALL) -d -m 755 $(USRSBINDIR) $(MANDIR)/man8
17
15
        for i in $(DIRS); do make install -C $$i; done
18
 
        $(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 osasnmpd $(SNMPDIR)
 
16
        $(INSTALL) -g $(GROUP) -o $(OWNER) -m 755 osasnmpd $(USRSBINDIR)
19
17
        $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 osasnmpd.8  $(MANDIR)/man8
20
18
 
 
19
.PHONY: all install clean