diff options
author | Guido van Rossum <guido@python.org> | 1992-02-11 14:50:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-02-11 14:50:54 (GMT) |
commit | 19f2aec581482d233ce66439963d8fdaa7605c23 (patch) | |
tree | edf9c3d5d980ad49639e00b8389ba62aab5b6b85 /Demo/sgi/video/Makefile | |
parent | f47d0485a08fe883672438ed9c24c57135a6934a (diff) | |
download | cpython-19f2aec581482d233ce66439963d8fdaa7605c23.zip cpython-19f2aec581482d233ce66439963d8fdaa7605c23.tar.gz cpython-19f2aec581482d233ce66439963d8fdaa7605c23.tar.bz2 |
Initial revision
Diffstat (limited to 'Demo/sgi/video/Makefile')
-rwxr-xr-x | Demo/sgi/video/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Demo/sgi/video/Makefile b/Demo/sgi/video/Makefile new file mode 100755 index 0000000..266ea52 --- /dev/null +++ b/Demo/sgi/video/Makefile @@ -0,0 +1,7 @@ +all: v2i i2v + +v2i: v2i.o + $(CC) v2i.o -limage -o v2i + +i2v: i2v.o + $(CC) i2v.o -limage -o i2v |