~ubuntu-branches/ubuntu/quantal/nullidentd/quantal

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): John H. Robinson, IV
  • Date: 2001-04-28 00:21:58 UTC
  • Revision ID: james.westby@ubuntu.com-20010428002158-ekchl0d966p9dn03
Tags: 1.0-2
Added Provides: ident-server (closes: Bug#95270)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
INSTALL=/usr/local/sbin
 
2
# Edited for Debian GNU/Linux.
 
3
DESTDIR=
 
4
 
 
5
INSTALL=$(DESTDIR)/usr/sbin
 
6
 
3
7
 
4
8
nullidentd: nullidentd.c version.h
5
9
        gcc -O2 -o nullidentd nullidentd.c
21
25
        rm -f .version version.h nullidentd
22
26
 
23
27
install: nullidentd
24
 
        rm -f $(INSTALL)/nullidentd
 
28
        #rm -f $(INSTALL)/nullidentd
25
29
        cp nullidentd $(INSTALL)/nullidentd
26
30
        chown root.root $(INSTALL)/nullidentd
27
 
        chmod a-rw $(INSTALL)/nullidentd
28
 
        chmod a+x $(INSTALL)/nullidentd
 
31
        #chmod a-rw $(INSTALL)/nullidentd
 
32
        #chmod a+x $(INSTALL)/nullidentd
 
33
        chmod 0755 $(INSTALL)/nullidentd
29
34