misc/kforth: Mostly finished with nucleus layer.

This commit is contained in:
2018-03-01 16:09:06 -08:00
parent adafdaa128
commit d96bf65a24
12 changed files with 587 additions and 52 deletions

View File

@@ -1,5 +1,5 @@
CXXSTD := c++14
CXXFLAGS := -std=$(CXXSTD) -Wall -Werror -O0 -g -static
CXXFLAGS := -std=$(CXXSTD) -Wall -Werror -O0 -g
LDFLAGS := -static
OBJS := linux/io.o \
io.o \
@@ -13,7 +13,7 @@ TARGET := kforth
all: $(TARGET)
$(TARGET): $(OBJS)
$(CXX) $(CXXFLAGS) -o $@ $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $(OBJS)
clean:
rm -f $(OBJS) $(TARGET)