blob: b34026a80c1d7b2c3da2d6acd90748a33448f420 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
CXXFLAGS += -g3 -ggdb -O0
CXXFILES := corewords.cpp types.cpp
OBJFILES := $(subst .cpp,.o,$(CXXFILES))
EXEFILE := alee
all: alee
alee: $(OBJFILES)
clean:
rm -f alee $(OBJFILES)
|