Forgot the makefile.

The git-ignore was blocking it.
This commit is contained in:
2025-10-01 03:05:01 -04:00
parent fe6c74efa4
commit 2be00d7915

15
js4g/Makefile Normal file
View File

@ -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