You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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)
|
|
|