Forgot the makefile.
The git-ignore was blocking it.
This commit is contained in:
15
js4g/Makefile
Normal file
15
js4g/Makefile
Normal 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
|
Reference in New Issue
Block a user