File: Makefile.in

package info (click to toggle)
pcopy 1.5-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 160 kB
  • ctags: 74
  • sloc: ansic: 402; sh: 186; makefile: 77
file content (41 lines) | stat: -rw-r--r-- 683 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Makefile for pcopy

prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@

CC = @CC@
CFLAGS = @CFLAGS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LDLIBS = @LIBS@
INSTALL = @INSTALL@

# Support for VPATH
srcdir = @srcdir@
VPATH = @srcdir@
TAR = tar

@SET_MAKE@

OBJS = pcopy.o

all:	pcopy

$(OBJS):	config.h

pcopy:	$(OBJS)
	$(CC) -o pcopy $(OBJS) $(LDLIBS)

install:	all
	$(INSTALL) -m 755 pcopy $(bindir)

clean mostlyclean distclean maintainer-clean::
	rm -f *.o *~ core pcopy \#*

distclean maintainer-clean::
	rm -f Makefile config.status config.cache config.log

dist distz:	distclean
	(PACKNAME=`basename \`pwd\`` ; cd .. ; $(TAR) cf - $$PACKNAME | gzip -9 >$$PACKNAME.tar.gz)