diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 10:30:55 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 10:30:55 -0500 |
commit | 56760f0517c646f41dd179e1f365d3268df3ec50 (patch) | |
tree | 95e8d4f96b35c318a3669966385a7bdb71e36434 /Makefile |
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b34026a --- /dev/null +++ b/Makefile @@ -0,0 +1,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) + |