~ubuntu-branches/ubuntu/precise/pcopy/precise

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Anibal Monsalve Salazar
  • Date: 2006-10-18 13:07:33 UTC
  • Revision ID: james.westby@ubuntu.com-20061018130733-op2plg9ab5ed1ghu
Tags: upstream-1.5
ImportĀ upstreamĀ versionĀ 1.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for pcopy
 
2
 
 
3
prefix = @prefix@
 
4
exec_prefix = @exec_prefix@
 
5
bindir = @bindir@
 
6
 
 
7
CC = @CC@
 
8
CFLAGS = @CFLAGS@
 
9
LD = @LD@
 
10
LDFLAGS = @LDFLAGS@
 
11
LDLIBS = @LIBS@
 
12
INSTALL = @INSTALL@
 
13
 
 
14
# Support for VPATH
 
15
srcdir = @srcdir@
 
16
VPATH = @srcdir@
 
17
TAR = tar
 
18
 
 
19
@SET_MAKE@
 
20
 
 
21
OBJS = pcopy.o
 
22
 
 
23
all:    pcopy
 
24
 
 
25
$(OBJS):        config.h
 
26
 
 
27
pcopy:  $(OBJS)
 
28
        $(CC) -o pcopy $(OBJS) $(LDLIBS)
 
29
 
 
30
install:        all
 
31
        $(INSTALL) -m 755 pcopy $(bindir)
 
32
 
 
33
clean mostlyclean distclean maintainer-clean::
 
34
        rm -f *.o *~ core pcopy \#*
 
35
 
 
36
distclean maintainer-clean::
 
37
        rm -f Makefile config.status config.cache config.log
 
38
 
 
39
dist distz:     distclean
 
40
        (PACKNAME=`basename \`pwd\`` ; cd .. ; $(TAR) cf - $$PACKNAME | gzip -9 >$$PACKNAME.tar.gz)
 
41