summaryrefslogtreecommitdiffstats
path: root/lib/simpleini/Makefile
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-09-29 12:19:00 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-09-29 12:19:00 +0200
commite9660c47c69327a131c4e4b15bea4bdc7937fd61 (patch)
treec7edc252258b6149ad09fcf9ba609f1d8cb92ae0 /lib/simpleini/Makefile
parent677ce3960cd13cbf994311c76d75b343b22fd480 (diff)
parentdf4e3dfb6e623889757afe79fc4dfd29ae85748e (diff)
downloadcolobot-e9660c47c69327a131c4e4b15bea4bdc7937fd61.tar.gz
colobot-e9660c47c69327a131c4e4b15bea4bdc7937fd61.tar.bz2
colobot-e9660c47c69327a131c4e4b15bea4bdc7937fd61.zip
Merge branch 'dev' into dev-graphics
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