Fixed MAKEC/MAKEJS typo (make clean now functions correctly)

This commit is contained in:
Emile Clark-Boman 2025-07-22 09:30:53 +10:00
parent 956cb20820
commit 837532adc7
2 changed files with 3 additions and 2 deletions

View file

@ -7,11 +7,11 @@ compile: js c
.PHONY: c
c:
$(MAKE) -f $(MAKEJS)
$(MAKE) -f $(MAKEC)
.PHONY: js
js:
$(MAKE) -f $(MAKEC)
$(MAKE) -f $(MAKEJS)
.PHONY: clean
clean:

View file

@ -78,5 +78,6 @@ $(BUILD):
.PHONY: clean
clean:
rm -rf $(BUILD)
find $(JS) ! -name 'lib.js' -type f -exec rm -f {} +
-include $(wildcard $(BUILD)/*.d)