nalgeon / sqlean

The ultimate set of SQLite extensions
MIT License
3.75k stars 120 forks source link

build: shorten a bit the makefile using pattern rules #21

Closed vincentbernat closed 3 years ago

vincentbernat commented 3 years ago

This also fixes the test rule which was incorrect. Use of \d+ requires use of PCREs. Extended regular expressions include +, but not \d.

Also, normalize a bit the negation of grep result: on a pipeline, the exit status is the one of the last command. You can negate it by putting ! in front of the pipeline.

This is a replacement for #20

nalgeon commented 3 years ago

Sorry, I'm more comfortable with the current Makefile structure. Thanks for the regex fix!