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

« back to all changes in this revision

Viewing changes to vmur/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:
 
1
# Common definitions
 
2
include ../common.mak
 
3
 
 
4
CFLAGS        += -D_FILE_OFFSET_BITS=64 -I../include -L.
 
5
 
 
6
all: vmur
 
7
 
 
8
vmur: vmur.c vmur.h
 
9
        $(CC) $(CFLAGS) -o $@ vmur.c
 
10
 
 
11
install: all
 
12
        $(INSTALL) -d -m 755 $(BINDIR) $(MANDIR)/man8
 
13
        $(INSTALL) -s -g $(GROUP) -o $(OWNER) -m 755 vmur $(BINDIR)
 
14
        $(INSTALL) -g $(GROUP) -o $(OWNER) -m 644 vmur.8 \
 
15
                $(MANDIR)/man8
 
16
 
 
17
clean:
 
18
        rm -f *.o *~ vmur
 
19
 
 
20
.PHONY: all install clean