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

« back to all changes in this revision

Viewing changes to qetharp/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
1
# Common definitions
2
2
include ../common.mak
3
3
 
4
 
CFLAGS        = -Wall -O2 -DS390_TOOLS_RELEASE=$(S390_TOOLS_RELEASE)
 
4
CFLAGS        += -I../include
5
5
 
6
6
all: qetharp-2.4 qetharp-2.6
7
7
 
12
12
        $(CC) $(CFLAGS) -o qetharp-2.6 qetharp26.c
13
13
 
14
14
install: all
15
 
        $(INSTALL) -d -m 755 $(MANDIR)/man8 $(BINDIR) $(BINLIBDIR)
 
15
        $(INSTALL) -d -m 755 $(MANDIR)/man8 $(BINDIR)
16
16
        $(INSTALL) -m 755 qetharp $(BINDIR)
17
 
        $(INSTALL) -m 755 qetharp-2.4 $(BINLIBDIR)
18
 
        $(INSTALL) -m 755 qetharp-2.6 $(BINLIBDIR)
 
17
        $(INSTALL) -s -m 755 qetharp-2.4 $(BINDIR)
 
18
        $(INSTALL) -s -m 755 qetharp-2.6 $(BINDIR)
19
19
        $(INSTALL) -m 644 qetharp.8 $(MANDIR)/man8 
20
20
 
21
21
clean:
22
22
        rm -f qetharp-2.4 qetharp-2.6 *.o *~ core
 
23
 
 
24
.PHONY: all install clean