apply new hurd patch to my tree
[debian/pax] / Makefile
1 #       $OpenBSD: Makefile,v 1.10 2001/05/26 00:32:20 millert Exp $
2
3 # To install on versions prior to BSD 4.4 the following may have to be
4 # defined with CFLAGS +=
5 #
6 # -DLONG_OFF_T  Define this if the base type of an off_t is a long (and is
7 #               NOT a quad).  (This is often defined in the file
8 #               /usr/include/sys/types.h).
9 #               This define is important, as if you do have a quad_t
10 #               off_t and define LONG_OFF_T, pax will compile but will
11 #               NOT RUN PROPERLY.
12 #
13
14 PROG=   pax
15 SRCS=   ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c\
16         gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c tables.c\
17         tar.c tty_subs.c fgetln.c strmode.c strlcpy.c vis.c
18 OBJS=   $(SRCS:.c=.o)
19 MAN=    pax.1
20
21 CFLAGS= -Wall -O2 -g -DLONG_OFF_T\
22         -DNET2_STAT -D_PATH_DEFTAPE=\"/dev/rmt0\" -DDEBIAN -D_GNU_SOURCE
23
24 prefix=/usr
25
26 pax:    $(OBJS)
27         $(CC) $(CFLAGS) $(OBJS) -o $@ $(LIBS)
28
29 clean:
30         $(RM) *.o
31
32 realclean: clean
33         $(RM) $(PROG)
34
35 install:
36         install -d -m 755 $(DESTDIR)$(prefix)/bin $(DESTDIR)$(prefix)/share/man/man1
37         install -s -m 755 $(PROG) $(DESTDIR)$(prefix)/bin
38         install    -m 644 $(MAN)  $(DESTDIR)$(prefix)/share/man/man1