-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
48 lines (36 loc) · 1.18 KB
/
Makefile
File metadata and controls
48 lines (36 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Makefile for Simulacra-Scheme project
# Using Guile Scheme as specified
SCHEME = guile
# Default target
all: run-example
# Run the main example
run-example:
$(SCHEME) -l example.scm -c "(run-social-media-simulation)"
# Run the basic simulacra demo
run-demo:
$(SCHEME) -l simulacra.scm -c "(demo-progression)"
# Run hyperreality demo
run-hyperreality:
$(SCHEME) -l simulacra.scm -c "(create-hyperreality)"
# Run the Disneyland effect demo
run-disneyland:
$(SCHEME) -l simulacra.scm -c "(disneyland-effect)"
# Run the Watergate effect demo
run-watergate:
$(SCHEME) -l simulacra.scm -c "(watergate-effect)"
# Generate Mermaid diagrams
generate-diagrams:
$(SCHEME) -l mermaid-generator.scm
# Run tests (placeholder for future test implementation)
test:
@echo "No tests implemented yet. See GitHub issue #6"
@echo "Future implementation will use SRFI-64 test framework"
# Clean any generated files
clean:
rm -f *.log *.out generated-diagrams.md
find . -name "*.go" -delete
# Set up environment (placeholder)
setup:
@echo "Checking Guile installation..."
@$(SCHEME) --version
.PHONY: all run-example run-demo run-hyperreality run-disneyland run-watergate generate-diagrams test clean setup