Changes for version 0.08
- Make Makefile::Parser->parse to raise syntax errors under strict mode
- Add full support for implicit pattern rules: %.o : %.c $(CC) -c $< The order of the implicit rules is not significant. Whee!
- Add more tests for pattern rules, expand $< and $* as expected, and clean up the stderr output.
- Add support for implicit suffix rules: .o.c: $(CC) -c $< Currently .SUFFIXES is a no-op. So suffix rules will be applied to any suffix-like targets. Internally the parser converts the suffix rules to pattern rules, thus saving me a lot of coding.
Modules
A Simple Parser for Makefiles
Provides
in lib/Makefile/Parser.pm