[Orca-checkins] rev 198 - trunk/orca/lib
blair at orcaware.com
blair at orcaware.com
Mon Jan 20 10:36:49 PST 2003
Author: blair
Date: 2003-01-20 10:36:42 -0800 (Mon, 20 Jan 2003)
New Revision: 198
Modified:
trunk/orca/lib/Makefile.in
Log:
* lib/Makefile.in (install):
When installing files, echo the install command before running it.
Use the new Makefile style for installing the SE/3.2.1 and SE/3.3
files, that is indent with spaces, not tabs.
Modified: trunk/orca/lib/Makefile.in
==============================================================================
--- trunk/orca/lib/Makefile.in (original)
+++ trunk/orca/lib/Makefile.in 2003-01-20 10:36:49.000000000 -0800
@@ -28,27 +28,26 @@
install: all
$(MKDIR) $(libdir)/Orca
+ $(MKDIR) $(libdir)/SE/3.2.1
+ $(MKDIR) $(libdir)/SE/3.3
@for f in Orca/*.pm; do \
- $(INSTALL) -m 0644 $$f $(libdir)/Orca; \
echo $(INSTALL) -m 0644 $$f $(libdir)/Orca; \
+ $(INSTALL) -m 0644 $$f $(libdir)/Orca; \
done
@if test -d Orca/Config; then \
$(MKDIR) $(libdir)/Orca/Config; \
for f in Orca/Config/*.pm; do \
- $(INSTALL) -m 0644 $$f $(libdir)/Orca/Config; \
echo $(INSTALL) -m 0644 $$f $(libdir)/Orca/Config; \
+ $(INSTALL) -m 0644 $$f $(libdir)/Orca/Config; \
done; \
fi
-
- $(MKDIR) $(libdir)/SE/3.2.1
- @for f in SE/3.2.1/*; do \
- $(INSTALL) -m 0644 $$f $(libdir)/SE/3.2.1; \
- echo $(INSTALL) -m 0644 $$f $(libdir)/SE/3.2.1; \
+ @for f in SE/3.2.1/*; do \
+ echo $(INSTALL) -m 0644 $$f $(libdir)/SE/3.2.1; \
+ $(INSTALL) -m 0644 $$f $(libdir)/SE/3.2.1; \
done
- $(MKDIR) $(libdir)/SE/3.3
- @for f in SE/3.3/*; do \
- $(INSTALL) -m 0644 $$f $(libdir)/SE/3.3; \
- echo $(INSTALL) -m 0644 $$f $(libdir)/SE/3.3; \
+ @for f in SE/3.3/*; do \
+ echo $(INSTALL) -m 0644 $$f $(libdir)/SE/3.3; \
+ $(INSTALL) -m 0644 $$f $(libdir)/SE/3.3; \
done
clean:
More information about the Orca-checkins
mailing list