From 2be00d79152c859f06caf0b4773835befdfced49ceb5048dc1d9aee080ff3df2 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Wed, 1 Oct 2025 03:05:01 -0400 Subject: [PATCH] Forgot the makefile. The git-ignore was blocking it. --- js4g/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 js4g/Makefile diff --git a/js4g/Makefile b/js4g/Makefile new file mode 100644 index 0000000..cdf942e --- /dev/null +++ b/js4g/Makefile @@ -0,0 +1,15 @@ +CXXFLAGS+= -std=c++23 -I . -O3 +#CXXFLAGS+= -O0 -g + + +all: StackMachine + +%: %.o + $(CXX) $^ -o $@ + +.PHONY: StackMachine.h + +StackMachine.cc: StackMachine.h + +clean: + $(RM) *.o StackMachine