WIP initial state

This commit is contained in:
madmaurice 2023-08-26 19:04:02 +02:00
parent 6cacf1ae80
commit ba5b55a196
10 changed files with 337 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
include Makeconf
$(info $(modules))
objs := $(addsuffix .o,$(modules))
%.o: %.cpp
g++ $(CXX_FLAGS) -c -o $@ $^
vgbc: $(objs)
g++ -o $@ $^