diff options
author | Larry Wall <larry@netlabs.com> | 1994-03-18 00:00:00 +0000 |
---|---|---|
committer | Larry Wall <larry@netlabs.com> | 1994-03-18 00:00:00 +0000 |
commit | 8990e3071044a96302560bbdb5706f3e74cf1bef (patch) | |
tree | 6cf4a58108544204591f25bd2d4f1801d49334b4 /ext/dl/eg/Makefile.att | |
parent | ed6116ce9b9d13712ea252ee248b0400653db7f9 (diff) | |
download | perl-8990e3071044a96302560bbdb5706f3e74cf1bef.tar.gz |
perl 5.0 alpha 6
[editor's note: cleaned up from the September '94 InfoMagic CD, just
like the last commit]
Diffstat (limited to 'ext/dl/eg/Makefile.att')
-rw-r--r-- | ext/dl/eg/Makefile.att | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ext/dl/eg/Makefile.att b/ext/dl/eg/Makefile.att new file mode 100644 index 0000000000..435b916f67 --- /dev/null +++ b/ext/dl/eg/Makefile.att @@ -0,0 +1,18 @@ +all: main test test1 +main: main.c + cc -g -o main main.c -ldl + +test.o: test.c + cc -g -pic -c test.c + +test: test.o + cc -o test -G test.o + +test1.o: test1.c + cc -g -pic -c test1.c + +test1: test1.o + cc -o test1 -G test1.o + +clean: + /bin/rm -f *.o test test1 main |