diff options
author | Roland McGrath <roland@redhat.com> | 1993-02-08 22:12:47 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1993-02-08 22:12:47 +0000 |
commit | cc1433e8085cdae7e5e337f9239045a14ee409e8 (patch) | |
tree | a137b572af5b488b7a11d81fd49084e5e81ab61d | |
parent | 4f1320fba290d5b380546defed1acb0d6a50b438 (diff) | |
download | gunmake-cc1433e8085cdae7e5e337f9239045a14ee409e8.tar.gz |
Formerly compatMakefile.~63~
-rw-r--r-- | compatMakefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/compatMakefile b/compatMakefile index b885038..7d2826a 100644 --- a/compatMakefile +++ b/compatMakefile @@ -154,7 +154,7 @@ make: $(objs) .c.o: $(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \ $(CFLAGS) $< $(OUTPUT_OPTION) -remote.o: remote.c remote-*.c +remote.o: remote.c $(srcdir)/remote-*.c $(CC) $(defines) $(REMOTE) -c -I. -I$(srcdir) \ $(CFLAGS) $(srcdir)/remote.c @@ -187,10 +187,9 @@ $(bindir)/$(instname): make mv $@.new $@ $(infodir)/$(instname).info: make.info - for file in $(srcdir)/make.info*; do \ - name="`basename $$file`"; \ + for file in make.info*; do \ $(INSTALL_DATA) $$file \ - `echo $@ | sed "s/$(instname).info\$$/$$name/"`; \ + `echo $@ | sed "s/$(instname).info\$$/$$file/"`; \ done $(mandir)/$(instname).$(manext): make.man |