Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5846050f authored by Atte Peltomaki's avatar Atte Peltomaki Committed by Android Git Automerger
Browse files

am 05e98055: am 60fe963c: build: explicitly define dependency files

* commit '05e98055':
  build: explicitly define dependency files
parents c26f4d39 05e98055
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -894,7 +894,7 @@ $(hide) $(PRIVATE_CXX) \
	$(PRIVATE_CFLAGS) \
	$(PRIVATE_CPPFLAGS) \
	$(PRIVATE_DEBUG_CFLAGS) \
	-MD -o $@ $<
	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
$(transform-d-to-p)
endef

@@ -921,7 +921,7 @@ $(hide) $(PRIVATE_CC) \
	$(PRIVATE_CFLAGS) \
	$(1) \
	$(PRIVATE_DEBUG_CFLAGS) \
	-MD -o $@ $<
	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
endef

define transform-c-to-o-no-deps
@@ -982,7 +982,7 @@ $(hide) $(PRIVATE_CXX) \
	$(PRIVATE_CFLAGS) \
	$(PRIVATE_CPPFLAGS) \
	$(PRIVATE_DEBUG_CFLAGS) \
	-MD -o $@ $<
	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
$(transform-d-to-p)
endef

@@ -1008,7 +1008,7 @@ $(hide) $(PRIVATE_CC) \
	$(PRIVATE_CFLAGS) \
	$(1) \
	$(PRIVATE_DEBUG_CFLAGS) \
	-MD -o $@ $<
	-MD -MF $(patsubst %.o,%.d,$@) -o $@ $<
endef

define transform-host-c-to-o-no-deps