Fixed MAKEC/MAKEJS typo (make clean now functions correctly)
This commit is contained in:
parent
956cb20820
commit
837532adc7
2 changed files with 3 additions and 2 deletions
4
Makefile
4
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue