Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/w32api/Makefile.in')
-rw-r--r--winsup/w32api/Makefile.in16
1 files changed, 8 insertions, 8 deletions
diff --git a/winsup/w32api/Makefile.in b/winsup/w32api/Makefile.in
index 39892c8e6..d72f4e80a 100644
--- a/winsup/w32api/Makefile.in
+++ b/winsup/w32api/Makefile.in
@@ -36,8 +36,8 @@ DISTFILES = \
all: $(SUBDIRS)
%-subdirs:
- for i in $(SUBDIRS); do \
- $(MAKE) -C $$i $*; \
+ for dir in $(SUBDIRS); do \
+ $(MAKE) -C $$dir $*; \
done
$(SUBDIRS):
@@ -47,8 +47,8 @@ test:
$(MAKE) -C lib test
install uninstall:
- for i in $(SUBDIRS); do \
- (cd $$i; $(MAKE) $@); \
+ for dir in $(SUBDIRS); do \
+ (cd $$dir; $(MAKE) $@); \
done
ifdef SNAPDATE
@@ -79,11 +79,11 @@ srcdist:
rm -rf $(distdir)
mkdir $(distdir)
chmod 755 $(distdir)
- for i in $(DISTFILES); do \
- cp -p $(srcdir)/$$i $(distdir)/$$i ; \
+ for file in $(DISTFILES); do \
+ cp -p $(srcdir)/$$file $(distdir)/$$file ; \
done
- for i in $(SUBDIRS); do \
- (cd $$i; $(MAKE) distdir=../$(distdir) dist); \
+ for dir in $(SUBDIRS); do \
+ (cd $$dir; $(MAKE) distdir=../$(distdir) dist); \
done
rm -f $(distdir)-src$(TARFILEEXT)
$(TAR) $(TARFLAGS)cf $(distdir)-src$(TARFILEEXT) $(distdir)