diff options
author | Larry Wall <larry@wall.org> | 1988-06-05 00:00:00 +0000 |
---|---|---|
committer | Larry Wall <larry@wall.org> | 1988-06-05 00:00:00 +0000 |
commit | 378cc40b38293ffc7298c6a7ed3cd740ad79be52 (patch) | |
tree | 87bedf9adc5c88847a2e2d85963df5f94435aaf5 /x2p/Makefile.SH | |
parent | a4de7c03d0bdc29d9d3a18abad4ac2628182ed7b (diff) | |
download | perl-378cc40b38293ffc7298c6a7ed3cd740ad79be52.tar.gz |
perl 2.0 (no announcement message available)perl-2.0
Some of the enhancements from Perl1 included:
* New regexp routines derived from Henry Spencer's.
o Support for /(foo|bar)/.
o Support for /(foo)*/ and /(foo)+/.
o \s for whitespace, \S for non-, \d for digit, \D nondigit
* Local variables in blocks, subroutines and evals.
* Recursive subroutine calls are now supported.
* Array values may now be interpolated into lists: unlink 'foo', 'bar', @trashcan, 'tmp';
* File globbing.
* Use of <> in array contexts returns the whole file or glob list.
* New iterator for normal arrays, foreach, that allows both read and write.
* Ability to open pipe to a forked off script for secure pipes in setuid scripts.
* File inclusion via do 'foo.pl';
* More file tests, including -t to see if, for instance, stdin is a terminal. File tests now behave in a more correct manner. You can do file tests on filehandles as well as filenames. The special filetests -T and -B test a file to see if it's text or binary.
* An eof can now be used on each file of the <> input for such purposes as resetting the line numbers or appending to each file of an inplace edit.
* Assignments can now function as lvalues, so you can say things like ($HOST = $host) =~ tr/a-z/A-Z/; ($obj = $src) =~ s/\.c$/.o/;
* You can now do certain file operations with a variable which holds the name of a filehandle, e.g. open(++$incl,$includefilename); $foo = <$incl>;
* Warnings are now available (with -w) on use of uninitialized variables and on identifiers that are mentioned only once, and on reference to various undefined things.
* There is now a wait operator.
* There is now a sort operator.
* The manual is now not lying when it says that perl is generally faster than sed. I hope.
Diffstat (limited to 'x2p/Makefile.SH')
-rw-r--r-- | x2p/Makefile.SH | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/x2p/Makefile.SH b/x2p/Makefile.SH index 17447db1f6..a00ee89c79 100644 --- a/x2p/Makefile.SH +++ b/x2p/Makefile.SH @@ -6,7 +6,7 @@ case $CONFIG in ln ../../../config.sh . || \ (echo "Can't find config.sh."; exit 1) fi - . config.sh + . ./config.sh ;; esac case "$0" in @@ -18,14 +18,11 @@ case "$mallocsrc" in esac echo "Extracting x2p/Makefile (with variable substitutions)" cat >Makefile <<!GROK!THIS! -# $Header: Makefile.SH,v 1.0.1.1 88/01/26 14:15:24 root Exp $ +# $Header: Makefile.SH,v 2.0 88/06/05 00:15:31 root Exp $ # # $Log: Makefile.SH,v $ -# Revision 1.0.1.1 88/01/26 14:15:24 root -# Added mallocsrc stuff. -# -# Revision 1.0 87/12/18 17:50:17 root -# Initial revision +# Revision 2.0 88/06/05 00:15:31 root +# Baseline version 2.0. # # @@ -79,11 +76,11 @@ a2p: $(obj) a2p.o $(CC) $(LDFLAGS) $(LARGE) $(obj) a2p.o $(libs) -o a2p a2p.c: a2p.y - @ echo Expect 107 shift/reduce errors... + @ echo Expect 103 shift/reduce errors... yacc a2p.y mv y.tab.c a2p.c -a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h +a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h $(CC) -c $(CFLAGS) $(LARGE) a2p.c # if a .h file depends on another .h file... @@ -92,23 +89,22 @@ $(h): install: a2p s2p # won't work with csh export PATH || exit 1 - - mv $(bin)/a2p $(bin)/a2p.old + - mv $(bin)/a2p $(bin)/a2p.old 2>/dev/null - mv $(bin)/s2p $(bin)/s2p.old - if test `pwd` != $(bin); then cp $(public) $(bin); fi cd $(bin); \ for pub in $(public); do \ -chmod 755 `basename $$pub`; \ +chmod +x `basename $$pub`; \ done - - test $(bin) = /bin || rm -f /bin/a2p -# chmod 755 makedir -# - makedir `filexp $(lib)` +# chmod +x makedir +# - ./makedir `filexp $(lib)` # - \ #if test `pwd` != `filexp $(lib)`; then \ #cp $(private) `filexp $(lib)`; \ #fi # cd `filexp $(lib)`; \ #for priv in $(private); do \ -#chmod 755 `basename $$priv`; \ +#chmod +x `basename $$priv`; \ #done - if test `pwd` != $(mansrc); then \ for page in $(manpages); do \ |