diff options
author | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:27:37 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1991-06-06 23:27:37 +0000 |
commit | 132b68a5c516d31aa5abdbca3bb36ded2c13b4cc (patch) | |
tree | d9d2896757fae635863444852c7d4d5c63033c8b /usub | |
parent | 16a2aea0ab11de3fff7ce863c5c2cf1851bb125e (diff) | |
download | perl-132b68a5c516d31aa5abdbca3bb36ded2c13b4cc.tar.gz |
perl 4.0 patch 4: (combined patch)
Random patches, mostly bugs and portability stuff. //g is the
only major new feature. Additionally, there is now an alternate
license you can distribute Perl under.
Diffstat (limited to 'usub')
-rw-r--r-- | usub/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usub/Makefile b/usub/Makefile index cf3a48b3ea..107702f303 100644 --- a/usub/Makefile +++ b/usub/Makefile @@ -1,10 +1,10 @@ -SRC = /usr/local/src/perl +SRC = .. GLOBINCS = LOCINCS = -LIBS = -lcurses -ltermlib +LIBS = -lcurses -ltermlib `. $(SRC)/config.sh; echo $$libs` curseperl: $(SRC)/uperl.o usersub.o curses.o - cc $(SRC)/uperl.o usersub.o curses.o $(LIBS) -lm -o curseperl + cc $(SRC)/uperl.o usersub.o curses.o $(LIBS) -o curseperl usersub.o: usersub.c cc -c -I$(SRC) $(GLOBINCS) -DDEBUGGING -g usersub.c |