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

Makefile - github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5fa8f317cd490e9a9f3fc73d2ae50146a361466f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=gcc
CFLAGS=-Wall
CPPFLAGS=-Wall

OBJ=testsi.o test1.o snippets.o ConvertUTF.o

testsi.o test1.o snippets.o : SimpleIni.h

testsi: $(OBJ)
	g++ -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