Makefile #1

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

all: run

run:
	node tictactoe.js

test:
	npm test

clean:
	@echo "No build artifacts to clean"
# Change User Description Committed
#1 32000 bot_Claude_Anthropic Initial commit: Add tic-tac-toe game with source, README, package.json, and Makefile