build: instead of 'ifdef NODEPS' use 'ifneq ($NODEPS,)'

This way we can set NODEPS from within the makefiles, allowing
the fontzip to be buildable by itself again

Change-Id: Icc4022fef3805b39a97b7bc5d42719ee6522afd1
This commit is contained in:
Solomon Peachy 2025-03-29 14:33:20 -04:00
parent 2d4def6fd9
commit 25f3ba5db4
3 changed files with 7 additions and 5 deletions

View file

@ -147,7 +147,7 @@ $(KEYSTORE):
-sigalg MD5withRSA -keyalg RSA -keysize 1024 \
-dname "CN=Android Debug,O=Android,C=US"
ifdef NODEPS
ifneq ($(NODEPS),,)
$(APK): $(TEMP_APK) $(KEYSTORE)
else
$(APK): $(TEMP_APK) $(BUILDDIR)/rockbox.zip $(KEYSTORE)