aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 36e299d01b24264cbff0982a7a2630a26daf89c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CXXFLAGS += -std=c++17 -g3 -ggdb -O0

CXXFILES := corewords.cpp dictionary.cpp executor.cpp parser.cpp state.cpp \
	    types.cpp
OBJFILES := $(subst .cpp,.o,$(CXXFILES))
LIBFILE := libalee.a
EXEFILE := alee

all: $(EXEFILE)

small: CXXFLAGS += -Os
small: $(EXEFILE)

$(EXEFILE): $(LIBFILE)

$(LIBFILE): $(OBJFILES)
	$(AR) cr $@ $(OBJFILES)

clean:
	rm -f $(EXEFILE) $(LIBFILE) $(OBJFILES)