Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrodie Thiesfield <brofield@gmail.com>2007-01-24 21:48:17 +0300
committerBrodie Thiesfield <brofield@gmail.com>2007-01-24 21:48:17 +0300
commit6a5cb90b45891083fe4981f1d57d0ba5a6e37fc0 (patch)
tree2ee0d5ba1526342fce4a49b80279bccabac94bc2 /Makefile
parent1f2a422414e33ab7a77e5ff5d999fae61cbc99e0 (diff)
version 4.1 release
Fix compilation breakages on gcc. Changed multi-line entries so that regardless of platform the in memory value has lines separated by a single \n character and on save they are delimited by the platform newline characters. Added option to output the UTF-8 file signature to all Save and SaveFile methods.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 04dbba6..c44c87b 100644
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,12 @@ CPPFLAGS=-Wall
OBJ=testsi.o test1.o snippets.o ConvertUTF.o
-testsi: $(OBJ)
+testsi: $(OBJ)
gcc -o testsi -lstdc++ $(OBJ)
clean:
rm -f testsi $(OBJ)
+
+data:
+ sed 's/\r\n$$/\n/g' < test1-expected.ini > unix.out
+ mv unix.out test1-expected.ini