More stuff on chapter 2's array stack.

This commit is contained in:
2018-02-08 15:05:19 -08:00
parent e0d8dc0171
commit 707d033d9f
7 changed files with 114 additions and 46 deletions

View File

@@ -1,4 +1,4 @@
pkgdata_DATA = corpus.txt ods-cpp/main.cpp
pkgdata_DATA = corpus.txt ods-cpp/main.cpp ods-cpp.pdf
corpus.txt: corpus.txt.gz
gzip -d -k $@.gz
@@ -10,3 +10,9 @@ ODS_SAMPLE_CODE_URL := http://opendatastructures.org/ods-cpp.tgz
ods-cpp.tgz:
if command -v curl 2>&1 > /dev/null ; then curl -L -O $(ODS_SAMPLE_CODE_URL) ; \
elif command -v curl 2>&1 > /dev/null ; then wget $(ODS_SAMPLE_CODE_URL) ; fi
ODS_PDF_URL := http://opendatastructures.org/ods-cpp.pdf
ods-cpp.pdf:
if command -v curl 2>&1 > /dev/null ; then curl -L -O $(ODS_PDF_URL) ; \
elif command -v curl 2>&1 > /dev/null ; then wget $(ODS_PDF_URL) ; fi