From d97cad90bb68b719636afbcead86a7c5cfa227f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fran=C3=A7ois=20Pinard?= Date: Wed, 16 Nov 1994 02:39:41 +0000 Subject: [PATCH] *** empty log message *** --- src/Makefile.in | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/src/Makefile.in b/src/Makefile.in index c7d627a..5b59432 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -20,7 +20,7 @@ SHELL = /bin/sh #### Start of system configuration section. #### srcdir = @srcdir@ -@VPATH@ +VPATH = @srcdir@ # If you use gcc, you should either run the fixincludes script that # comes with it or else use gcc with the -traditional option. Otherwise @@ -64,26 +64,26 @@ INSTALL_DATA = @INSTALL_DATA@ # disable the tar -k option instead of emulating open. # -DXENIX If you have sys/inode.h and need it to be included. -DEFS = @DEFS@ +DEF_AR_FILE = @DEF_AR_FILE@ +DEFBLOCKING = 20 +DEFS = @DEFS@ -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" -DDEFBLOCKING=$(DEFBLOCKING) + # Set this to rtapelib.o unless you defined NO_REMOTE, in which case # make it empty. RTAPELIB = @RTAPELIB@ LIBS = @LIBS@ -DEF_AR_FILE = @DEF_AR_FILE@ -DEFBLOCKING = 20 -CDEBUG = -g -CFLAGS = $(CDEBUG) -I. -I$(srcdir) $(DEFS) \ - -DDEF_AR_FILE=\"$(DEF_AR_FILE)\" \ - -DDEFBLOCKING=$(DEFBLOCKING) +CFLAGS = -g LDFLAGS = -g prefix = /usr/local +exec_prefix = $(prefix) + # Prefix for each installed program, normally empty or `g'. binprefix = # The directory to install tar in. -bindir = $(prefix)/bin +bindir = $(exec_prefix)/bin # The directory to install the info files in. infodir = $(prefix)/info @@ -108,6 +108,9 @@ AUX = README INSTALL COPYING ChangeLog Makefile.in makefile.pc \ all: @PROGS@ tar.info +.c.o: + $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir) -I. $< + tar: $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) @@ -165,3 +168,6 @@ tar.zoo: $(SRCS) $(AUX) for X in $(SRCS) $(AUX) ; do echo $$X ; sed 's/$$/ /' $$X > tmp.dir/$$X ; done cd tmp.dir ; zoo aM ../tar.zoo * -rm -rf tmp.dir + +# Prevent GNU make v3 from overflowing arg limit on SysV. +.NOEXPORT: -- 2.45.2