Compare commits

...

2 Commits

Author SHA1 Message Date
abdelrahman ad4b7b40aa Update .gitignore 2024-05-26 14:52:00 +01:00
abdelrahman aa12b62e7e Fix compile script 2024-05-26 14:51:53 +01:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,5 +5,5 @@ big_endian*
float32_example.tiff
*.py
tiffread
test.ppm
test.*
compile_commands.json
+2 -2
View File
@@ -12,8 +12,8 @@ LIBS="\
$(pkg-config --libs sdl2) \
"
SRC="\
$(find ./src -name *.c | xargs -I{} echo -n "{} ") \
$(find intern/wizapp/src -type f -name *.c | xargs -I{} echo -n "{} ") \
$(find ./src -name "*.c" | xargs -I{} echo -n "{} ") \
$(find intern/wizapp/src -type f -name "*.c" | xargs -I{} echo -n "{} ") \
"
OUT=tiffread