summaryrefslogtreecommitdiff
path: root/archivers/pax/files/Makefile.in
blob: 3576de8590bd85b2a5077258b5f19645dff54593 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#	$NetBSD: Makefile.in,v 1.10 2008/03/06 04:45:58 jlam Exp $

srcdir=		@srcdir@

DESTDIR=	
prefix=		@prefix@
exec_prefix=	@exec_prefix@
bindir=		@bindir@
mandir=		@mandir@

man1dir=	$(mandir)/man1
cat1dir=	$(mandir)/cat1

CC=		@CC@
CCLD=		$(CC)
LIBS=		@LIBS@
CPPFLAGS=	@CPPFLAGS@ -I. -I$(srcdir)
DEFS=		@DEFS@
CFLAGS=		@CFLAGS@
LDFLAGS=	@LDFLAGS@

INSTALL=	@INSTALL@

PROG=		pax

OBJS=	ar_io.o ar_subs.o buf_subs.o file_subs.o ftree.o \
	gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o tables.o \
	tar.o tty_subs.o \
	getid.o spec.o misc.o stat_flags.o pack_dev.o cpio.o

all: $(PROG)

.c.o:
	$(CC) $(DEFS) $(CPPFLAGS) $(CFLAGS) -c $<

$(PROG): $(OBJS)
	$(CCLD) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)

clean:
	rm -f $(OBJS) $(PROG)

distclean: clean
	rm -f Makefile config.cache config.h config.status
	rm -f configure.lineno config.log

install:
	$(INSTALL) -m 755 -d $(DESTDIR)$(bindir)
	$(INSTALL) -m 755 -d $(DESTDIR)$(man1dir)
	$(INSTALL) -m 755 -d $(DESTDIR)$(cat1dir)
	$(INSTALL) $(PROG) $(DESTDIR)$(bindir)
	ln -f $(DESTDIR)$(bindir)/$(PROG) $(DESTDIR)$(bindir)/cpio
	ln -f $(DESTDIR)$(bindir)/$(PROG) $(DESTDIR)$(bindir)/tar
	$(INSTALL) -m 444 $(PROG).1 $(DESTDIR)$(man1dir)/$(PROG).1
	$(INSTALL) -m 444 $(PROG).cat1 $(DESTDIR)$(cat1dir)/$(PROG).0
	$(INSTALL) -m 444 cpio.1 $(DESTDIR)$(man1dir)/cpio.1
	$(INSTALL) -m 444 cpio.cat1 $(DESTDIR)$(cat1dir)/cpio.0
	$(INSTALL) -m 444 tar.1 $(DESTDIR)$(man1dir)/tar.1
	$(INSTALL) -m 444 tar.cat1 $(DESTDIR)$(cat1dir)/tar.0