├── Makefile ├── README.markdown ├── debian ├── changelog ├── compat ├── control ├── copyright ├── green.install ├── rules ├── source │ └── format └── watch ├── green.1 ├── green.c ├── green.h ├── green.markdown ├── main.c └── sdl.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/README.markdown -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/green.install: -------------------------------------------------------------------------------- 1 | usr/bin/green 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/debian/watch -------------------------------------------------------------------------------- /green.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/green.1 -------------------------------------------------------------------------------- /green.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/green.c -------------------------------------------------------------------------------- /green.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/green.h -------------------------------------------------------------------------------- /green.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/green.markdown -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/main.c -------------------------------------------------------------------------------- /sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schandinat/green/HEAD/sdl.c --------------------------------------------------------------------------------