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>2009-06-30 13:44:12 +0400
committerBrodie Thiesfield <brofield@gmail.com>2009-06-30 13:44:12 +0400
commit952daab99c9272871e267242a89415aeb905b2f8 (patch)
tree686ea200add990a4ccfd2464b31ee70efe3839cb
parentb516badb54dd647435ac90661e6d15d2aefe92cb (diff)
add test target to Makefile
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f66fada..a04b5e3 100644
--- a/Makefile
+++ b/Makefile
@@ -11,8 +11,6 @@ help:
all: $(OBJS)
$(CC) -o testsi $(OBJS)
-
-
clean:
rm -f core *.o testsi
@@ -20,6 +18,10 @@ data:
sed 's/\r\n$$/\n/g' < test1-expected.ini > unix.out
mv unix.out test1-expected.ini
+test: testsi
+ ./testsi -u -m -l test1-input.ini > test1-blah.ini
+ diff test1-output.ini test1-expected.ini
+
install:
@echo No install required. Just include the SimpleIni.h header file to use it.