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:
authorunknown <brofield@users.noreply.github.com>2020-06-16 17:18:26 +0300
committerunknown <brofield@users.noreply.github.com>2020-06-16 17:18:26 +0300
commit3fea945de7264e7a6ae058211203a7f2b1a42b9d (patch)
tree3dd6c47deab24b62e7446486756c56a928b322a8 /Makefile
parentfe082fa81f4a55ddceb55056622136be616b3c6f (diff)
First stage of updating the project to have full test harness and incorporate some of the requested changes
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index a04b5e3..0000000
--- a/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-CC=g++
-CFLAGS=-Wall
-CPPFLAGS=-Wall
-
-OBJS=testsi.o test1.o snippets.o ConvertUTF.o
-
-help:
- @echo This makefile is just for the test program \(use \"make clean all test\"\)
- @echo Just include the SimpleIni.h header file to use it.
-
-all: $(OBJS)
- $(CC) -o testsi $(OBJS)
-
-clean:
- rm -f core *.o testsi
-
-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.
-
-testsi.o test1.o snippets.o : SimpleIni.h