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.
14 lines
183 B
Makefile
14 lines
183 B
Makefile
2 years ago
|
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)
|
||
|
|