├── .gitignore ├── README.md ├── example ├── a.c ├── b.c ├── c.y ├── makefile └── prog.h ├── make.awk └── make.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/README.md -------------------------------------------------------------------------------- /example/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/example/a.c -------------------------------------------------------------------------------- /example/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/example/b.c -------------------------------------------------------------------------------- /example/c.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/example/c.y -------------------------------------------------------------------------------- /example/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/example/makefile -------------------------------------------------------------------------------- /example/prog.h: -------------------------------------------------------------------------------- 1 | void hello(void); 2 | -------------------------------------------------------------------------------- /make.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/make.awk -------------------------------------------------------------------------------- /make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benhoyt/awkmake/HEAD/make.py --------------------------------------------------------------------------------