sandbox/v1/Makefile

24 lines
363 B
Makefile
Raw Normal View History

2018-02-23 22:01:52 +00:00
CXXSTD := c++14
CXXFLAGS := -std=$(CXXSTD) -Wall -Werror -O0 -g
LDFLAGS := -static
2018-02-22 19:38:27 +00:00
OBJS := linux/io.o \
io.o \
system.o \
parser.o \
2018-02-25 06:35:58 +00:00
word.o \
dict.o \
2018-02-22 19:38:27 +00:00
kforth.o
TARGET := kforth
all: $(TARGET)
$(TARGET): $(OBJS)
$(CXX) $(LDFLAGS) -o $@ $(OBJS)
2018-02-22 19:38:27 +00:00
clean:
rm -f $(OBJS) $(TARGET)
2018-02-25 06:35:58 +00:00
install: $(TARGET)
cp $(TARGET) ~/bin
chmod 0755 ~/bin/$(TARGET)