Commit Graph
2 Commits
Author SHA1 Message Date
Jacob Shaffer 502000043e chore: split clean target into separate rm commands for build, release, and debug artifacts
The clean target previously removed all artifacts with a single glob pattern. This change explicitly separates the removal of the build directory, release artifacts (wren, libwren.a, libwren.so), and debug artifacts (wrend, libwrend.a, libwrend.so) into distinct rm commands for clarity and maintainability.
2015-02-12 15:23:13 +00:00
Jacob Shaffer deca7c716b fix: extend make clean to remove libwren.a and libwren.so artifacts
Previously, the clean target only removed the `build` directory and the `wren` binary, leaving behind static and shared library files. The glob pattern `libwren*` now ensures both `libwren.a` and `libwren.so` are deleted, along with their debug counterparts `libwrend*`.
2015-02-06 20:15:41 +00:00