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: c44c87b9f493668a9e50d962b769aefb12e5b0a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC=gcc
CFLAGS=-Wall
CPPFLAGS=-Wall

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

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