fletcher / peg-multimarkdown

An implementation of MultiMarkdown in C, using a PEG grammar - a fork of jgm's peg-markdown. No longer under active development - see MMD 5.
Other
523 stars 55 forks source link

$(MAKE) instead of make #100

Closed nlegrand closed 12 years ago

nlegrand commented 12 years ago

using $(MAKE) instead of plain 'make' is a bit more portable when your make is not GNU Make. For instance on OpenBSD:

$ MAKE=gmake $MAKE

permits to compile with GNU make.

It doesn't break when GNU make is the default make of your system.

Cheers,

nicolas

fletcher commented 12 years ago

I'll need to test this out before I merge it. Thank you for submitting it!