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

CXXFILES := corewords.cpp dictionary.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)