summaryrefslogtreecommitdiffstats
path: root/lib/simpleini/Makefile
diff options
context:
space:
mode:
authorZaba999 <zaba.marcin@gmail.com>2012-09-27 00:30:47 +0200
committerZaba999 <zaba.marcin@gmail.com>2012-09-27 00:30:47 +0200
commitcc9a5070544bbac127df45ca73810a03ed2fa9d2 (patch)
tree8c12ec1d4c33e3eaf8f0aa6a39697f09569aa43f /lib/simpleini/Makefile
parent400869ff86e88fdb12c892c7885c07ce2ae99e5e (diff)
downloadcolobot-cc9a5070544bbac127df45ca73810a03ed2fa9d2.tar.gz
colobot-cc9a5070544bbac127df45ca73810a03ed2fa9d2.tar.bz2
colobot-cc9a5070544bbac127df45ca73810a03ed2fa9d2.zip
Profile rewritten to boost. Read/write to ini should work.
Load/Save should work.
Diffstat (limited to 'lib/simpleini/Makefile')
-rw-r--r--lib/simpleini/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/simpleini/Makefile b/lib/simpleini/Makefile
deleted file mode 100644
index a04b5e3..0000000
--- a/lib/simpleini/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