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: 04dbba66ed87815d5a55b638ca1c1d0898f1be88 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)