misc/kforth: Start command processing.

This commit is contained in:
2018-02-24 22:35:58 -08:00
parent 0a010e4527
commit 14dc525084
15 changed files with 439 additions and 49 deletions

View File

@@ -3,6 +3,8 @@ CXXFLAGS := -std=$(CXXSTD) -Wall -Werror -g -O0
OBJS := linux/io.o \
io.o \
parser.o \
word.o \
dict.o \
kforth.o
TARGET := kforth
@@ -13,3 +15,7 @@ $(TARGET): $(OBJS)
clean:
rm -f $(OBJS) $(TARGET)
install: $(TARGET)
cp $(TARGET) ~/bin
chmod 0755 ~/bin/$(TARGET)