I was thinking about GNU Make, a build automation tool that automates the process of compiling and building software projects. Though it’s a fantastic tool in the developer’s realm, learning or starting to use it can be a bit overwhelming at first, mainly due to its syntax, white-space sensitivity, and complexity for large projects. Even I faced some problems when I first started using it. This gave me an idea, why don’t I build it again from scratch, simplifying it for both beginners and advanced users?
Why from scratch ?
Why not? Making something from scratch can give you insight into how it works, how it was initially designed, and the challenges that developers overcame. Building something from scratch will bring you a wealth of experience in return, and you can add new features along the way. For this, I chose Go as the primary language. Since I am exploring Go, this project will give me valuable insight into system-level programming. I named the project “Ripple”, just like ripples in water, executing one task can trigger multiple dependent tasks.
Unlike GNU Make, which is not natively available on Windows, I aim to make Ripple available for Linux, macOS, and even Windows. Unlike GNU Make, which requires additional tools to work properly on Windows, I intend to make Ripple readily available, just install it and use it, no additional setup required.
Though Ripple is still under development, I can see it becoming a fully-fledged tool that could potentially replace GNU Make someday if everything goes as planned. Right now, I am working on Ripple alone, but I intend to invite all my fellow Gophers who want to create something new, innovative, and exciting to use.
With this, I am signing off and will keep you updated!
Top comments (0)