misc/kforth: Initial import.

This commit is contained in:
2018-02-22 11:38:27 -08:00
parent 0fb6dce050
commit c4d78e17ff
13 changed files with 1083 additions and 0 deletions

13
Makefile Normal file
View File

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