misc/kforth: Start command processing.
This commit is contained in:
6
Makefile
6
Makefile
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user