première version

This commit is contained in:
2023-08-21 08:40:23 +02:00
parent c6d71faca7
commit 3e44eb5340
13 changed files with 3096 additions and 3 deletions

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
all: testAutoText doc
./testAutoText < data/LesForcatsDuMariage-lower.txt
testAutoText: cpp/TestAutoText.cpp cpp/TextProdChar.cpp include/TextProdChar.hpp cpp/LexFreq.cpp include/LexFreq.hpp cpp/Context.cpp include/Context.hpp
g++ -g -I ./include/ cpp/TestAutoText.cpp cpp/TextProdChar.cpp cpp/LexFreq.cpp cpp/Context.cpp -o testAutoText
clean:
rm -fr *~ cpp/*~ include/*~
wipe: clean
rm -fr testAutoText autoTextDoc
doc:
doxygen Doxyfile >/dev/null