diff options
author | Tobias Heinicke <theinicke@bss-wf.de> | 2017-09-06 14:30:17 +0200 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2018-11-15 22:10:26 -0500 |
commit | a309537fdc8d86131522d43f9a9b2a0f58d9bda9 (patch) | |
tree | d716fe1cca6a85ea630140962b36f0a8dff7b5ff /src/cmd/paint/mkfile | |
parent | c63d31a8c1d02e7fa45403a5a10373439d29b250 (diff) | |
download | plan9port-a309537fdc8d86131522d43f9a9b2a0f58d9bda9.tar.gz plan9port-a309537fdc8d86131522d43f9a9b2a0f58d9bda9.tar.bz2 plan9port-a309537fdc8d86131522d43f9a9b2a0f58d9bda9.zip |
paint: add drawing program from 9front (#112)
Paint first appeared in 9front. The 9front license is reproduced
in the related source files - the original repository is located at
https://code.9front.org/hg/plan9front.
Diffstat (limited to 'src/cmd/paint/mkfile')
-rw-r--r-- | src/cmd/paint/mkfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/cmd/paint/mkfile b/src/cmd/paint/mkfile new file mode 100644 index 00000000..272db4b4 --- /dev/null +++ b/src/cmd/paint/mkfile @@ -0,0 +1,11 @@ +<$PLAN9/src/mkhdr + +TARG=paint + +OFILES=\ + eenter.$O\ + paint.$O\ + +HFILES=paint.h\ + +<$PLAN9/src/mkone |