misc/kforth: Filling out more words.

This commit is contained in:
2018-02-28 16:44:43 -08:00
parent 6a49675314
commit 7fc402e30a
6 changed files with 532 additions and 6 deletions

View File

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