This commit is contained in:
Christoph J. Scherr 2023-09-15 13:31:06 +02:00
parent 50cfd60560
commit b9b41be2f4
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored
View File

@ -62,3 +62,4 @@ build
CMakeCache.txt CMakeCache.txt
Makefile Makefile
src/huffman/testfiles src/huffman/testfiles
data

View File

@ -21,6 +21,7 @@ add_executable( echochar src/echochar.c )
add_executable( euler src/euler.c ) add_executable( euler src/euler.c )
add_executable( factorial src/factorial.c ) add_executable( factorial src/factorial.c )
add_executable( fail src/fail.c ) add_executable( fail src/fail.c )
add_executable( fib src/fib.c )
add_executable( fread src/fread.c ) add_executable( fread src/fread.c )
add_executable( hello-world src/hello-world.c ) add_executable( hello-world src/hello-world.c )
add_executable( options src/options.c ) add_executable( options src/options.c )