]> Dogcows Code - chaz/tar/blob - src/Makefile.in
*** empty log message ***
[chaz/tar] / src / Makefile.in
1 # Un*x Makefile for GNU tar program.
2 # Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 #### Start of system configuration section. ####
19
20 srcdir = @srcdir@
21 VPATH = @srcdir@
22
23 # If you use gcc, you should either run the fixincludes script that
24 # comes with it or else use gcc with the -traditional option. Otherwise
25 # ioctl calls will be compiled incorrectly on some systems.
26 CC = @CC@
27 YACC = @YACC@
28 INSTALL = @INSTALL@
29 INSTALL_PROGRAM = @INSTALL_PROGRAM@
30 INSTALL_DATA = @INSTALL_DATA@
31
32 # Things you might add to DEFS:
33 # -DSTDC_HEADERS If you have ANSI C headers and libraries.
34 # -DHAVE_UNISTD_H If you have unistd.h.
35 # -DHAVE_LIMITS_H If you have limits.h.
36 # -DBSD42 If you have sys/dir.h (unless you use -DPOSIX),
37 # sys/file.h, and st_blocks in `struct stat'.
38 # -DUSG If you have System V/ANSI C string
39 # and memory functions and headers,
40 # fcntl.h, getcwd, no valloc,
41 # and ndir.h (unless you use -DDIRENT).
42 # -DDIRENT If USG and you have dirent.h instead of ndir.h.
43 # -DMAJOR_IN_MKDEV If major, minor, makedev defined in sys/mkdev.h.
44 # -DMAJOR_IN_SYSMACROS If major, minor, makedev defined in sys/sysmacros.h.
45 # -DRETSIGTYPE=int If your signal handlers return int, not void.
46 # -DHAVE_SYS_MTIO_H If you have sys/mtio.h (magtape ioctls).
47 # -DHAVE_SYS_GENTAPE_H If you have sys/gentape.h (ISC magtape ioctls).
48 # -DHAVE_NETDB_H To use rexec for remote tape operations
49 # instead of forking rsh or remsh.
50 # -DNO_REMOTE If you have neither a remote shell nor rexec.
51 # -DHAVE_VPRINTF If you have vprintf function.
52 # -DHAVE_DOPRNT If you have _doprnt function (but lack vprintf).
53 # -DHAVE_FTIME If you have ftime system call.
54 # -DHAVE_STRSTR If you have strstr function.
55 # -DHAVE_VALLOC If you have valloc function.
56 # -DHAVE_MKDIR If you have mkdir and rmdir system calls.
57 # -DHAVE_MKNOD If you have mknod system call.
58 # -DHAVE_RENAME If you have rename system call.
59 # -DHAVE_FTRUNCATE If you have ftruncate system call.
60 # -DV7 On Version 7 Unix (not tested in a long time).
61 # -DEMUL_OPEN3 If you lack a 3-argument version of open, and want
62 # to emulate it with system calls you do have.
63 # -DNO_OPEN3 If you lack the 3-argument open and want to
64 # disable the tar -k option instead of emulating open.
65 # -DXENIX If you have sys/inode.h and need it to be included.
66
67 DEF_AR_FILE = @DEF_AR_FILE@
68 DEFBLOCKING = 20
69 DEFS = @DEFS@ -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" -DDEFBLOCKING=$(DEFBLOCKING)
70
71 # Set this to rtapelib.o unless you defined NO_REMOTE, in which case
72 # make it empty.
73 RTAPELIB = @RTAPELIB@
74 LIBS = @LIBS@
75
76 CFLAGS = -g
77 LDFLAGS = -g
78
79 prefix = /usr/local
80 exec_prefix = $(prefix)
81
82 # Prefix for each installed program, normally empty or `g'.
83 binprefix =
84
85 # The directory to install tar in.
86 bindir = $(exec_prefix)/bin
87
88 # Where to put the rmt executable.
89 libdir = /etc
90
91 # The directory to install the info files in.
92 infodir = $(prefix)/info
93
94 #### End of system configuration section. ####
95
96 SHELL = /bin/sh
97
98 SRC1 = tar.c create.c extract.c buffer.c getoldopt.c update.c gnu.c mangle.c
99 SRC2 = version.c list.c names.c diffarch.c port.c fnmatch.c getopt.c malloc.c
100 SRC3 = getopt1.c regex.c getdate.y
101 SRCS = $(SRC1) $(SRC2) $(SRC3)
102 OBJ1 = tar.o create.o extract.o buffer.o getoldopt.o update.o gnu.o mangle.o
103 OBJ2 = version.o list.o names.o diffarch.o port.o fnmatch.o getopt.o @MALLOC@
104 OBJ3 = getopt1.o regex.o getdate.o $(RTAPELIB)
105 OBJS = $(OBJ1) $(OBJ2) $(OBJ3)
106 AUX = README INSTALL COPYING ChangeLog Makefile.in makefile.pc \
107 configure configure.in \
108 tar.h fnmatch.h pathmax.h port.h open3.h getopt.h regex.h \
109 rmt.h rmt.c rtapelib.c alloca.c \
110 msd_dir.h msd_dir.c tcexparg.c \
111 level-0 level-1 backup-specs testpad.c getpagesize.h
112 # tar.texinfo tar.info* texinfo.tex \
113
114 all: @PROGS@ # tar.info
115
116 .c.o:
117 $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir) -I. $<
118
119 tar: $(OBJS)
120 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)
121
122 rmt: rmt.c
123 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(srcdir)/rmt.c
124
125 tar.info: tar.texinfo
126 makeinfo $(srcdir)/tar.texinfo
127
128 install: all
129 $(INSTALL_PROGRAM) tar $(bindir)/$(binprefix)tar
130 -test ! -f rmt || $(INSTALL_PROGRAM) rmt $(libdir)/rmt
131 # for file in $(srcdir)/tar.info*; \
132 # do $(INSTALL_DATA) $$file $(infodir)/$$file; \
133 # done
134
135 uninstall:
136 rm -f $(bindir)/$(binprefix)tar $(infodir)/tar.info*
137 -rm -f $(libdir)/rmt
138
139 $(OBJS): tar.h pathmax.h port.h testpad.h
140 regex.o buffer.o tar.o: regex.h
141 tar.o fnmatch.o: fnmatch.h
142
143 getdate.c: getdate.y
144 yacc getdate.y
145 mv y.tab.c getdate.c
146 # getdate.y has 8 shift/reduce conflicts.
147
148 testpad.h: testpad
149 ./testpad
150
151 testpad: testpad.o
152 $(CC) -o $@ testpad.o
153
154 TAGS: $(SRCS)
155 etags $(SRCS)
156
157 clean:
158 rm -f *.o tar rmt testpad testpad.h core
159
160 mostlyclean: clean
161
162 distclean: clean
163 rm -f Makefile config.status
164
165 realclean: distclean
166 rm -f TAGS *.info*
167
168 shar: $(SRCS) $(AUX)
169 shar $(SRCS) $(AUX) | compress > tar-`sed -e '/version_string/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q version.c`.shar.Z
170
171 dist: $(SRCS) $(AUX)
172 echo tar-`sed -e '/version_string/!d' -e 's/[^0-9.]*\([0-9.]*\).*/\1/' -e q version.c` > .fname
173 -rm -rf `cat .fname`
174 mkdir `cat .fname`
175 ln $(SRCS) $(AUX) `cat .fname`
176 tar chZf `cat .fname`.tar.Z `cat .fname`
177 -rm -rf `cat .fname` .fname
178
179 tar.zoo: $(SRCS) $(AUX)
180 -rm -rf tmp.dir
181 -mkdir tmp.dir
182 -rm tar.zoo
183 for X in $(SRCS) $(AUX) ; do echo $$X ; sed 's/$$/ /' $$X > tmp.dir/$$X ; done
184 cd tmp.dir ; zoo aM ../tar.zoo *
185 -rm -rf tmp.dir
186
187 # Prevent GNU make v3 from overflowing arg limit on SysV.
188 .NOEXPORT:
This page took 0.050872 seconds and 5 git commands to generate.