mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Oops! | doesn't do the same thing in make as it does in ninja, resulting on
broken rebuilds. These should now work.
This commit is contained in:
6
Makefile
6
Makefile
@@ -69,9 +69,9 @@ endef
|
||||
|
||||
use-library = $(eval $(use-library-impl))
|
||||
define use-library-impl
|
||||
$(1): | $(call $(3)_LIB)
|
||||
$(1): private LDFLAGS += $(call $(3)_LDFLAGS)
|
||||
$(2): private CFLAGS += $(call $(3)_CFLAGS)
|
||||
$1: $(call $3_LIB)
|
||||
$1: private LDFLAGS += $(call $3_LDFLAGS)
|
||||
$2: private CFLAGS += $(call $3_CFLAGS)
|
||||
endef
|
||||
|
||||
use-pkgconfig = $(eval $(use-pkgconfig-impl))
|
||||
|
||||
Reference in New Issue
Block a user