diff options
author | Roland McGrath <roland@redhat.com> | 1996-03-01 17:45:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-03-01 17:45:34 +0000 |
commit | a579af186bbb9bf891286b0940800a88e3e71f9a (patch) | |
tree | b1ddde98389b30ea99b9f7a6474e98cbfd9b11b1 | |
parent | 01d08292bcd666bddfbf9dc887bf660b1d5c40cd (diff) | |
download | gunmake-a579af186bbb9bf891286b0940800a88e3e71f9a.tar.gz |
Fri Mar 1 12:04:47 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
* compatMakefile (objs): Add missing backslash.
-rw-r--r-- | compatMakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compatMakefile b/compatMakefile index 9fab612..346f3cb 100644 --- a/compatMakefile +++ b/compatMakefile @@ -1,7 +1,7 @@ # NOTE: If you have no `make' program at all to process this makefile, run # `build.sh' instead. # -# Copyright (C) 1988, 89, 91, 92, 93, 94, 1995 Free Software Foundation, Inc. +# Copyright (C) 1988,89,91,92,93,94,95,96 Free Software Foundation, Inc. # This file is part of GNU Make. # # GNU Make is free software; you can redistribute it and/or modify @@ -110,7 +110,7 @@ CTAGS = ctags -w objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \ rule.o implicit.o default.o variable.o expand.o function.o \ vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o \ - getopt.o getopt1.o glob/libglob.a + getopt.o getopt1.o glob/libglob.a \ $(ALLOCA) $(extras) srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c \ $(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c \ |