martinpaljak / osx-ccid-installer

Easy-to-use (graphical) open source CCID driver installer for OSX El Capitan (10.11) / macOS Sierra (10.12)
40 stars 18 forks source link

Fix build when using "make --jobs" #7

Closed LudovicRousseau closed 7 years ago

LudovicRousseau commented 7 years ago

The default target does not depend on the two targets "clean" and "dmg". The default target depends on "clean" first then "dmg" after targets.

The code broke when "make --jobs" is used and the 2 targets are executed simultaneously.

Also use "$(MAKE)" instead of "make" as documented in https://www.gnu.org/software/make/manual/make.html#MAKE-Variable

martinpaljak commented 7 years ago

Indeed, thanks.