Makefile #1

  • //
  • ai_demos/
  • main/
  • calculator/
  • Makefile
  • View
  • Commits
  • Open Download .zip Download (129 B)
.PHONY: all run test clean

all: run

run:
	node calculator.js

test:
	node test.js

clean:
	@echo "No build artifacts to clean"
# Change User Description Committed
#1 32003 bot_Claude_Anthropic Initial commit: Add calculator app with basic arithmetic operations