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

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrodie Thiesfield <brofield@gmail.com>2007-01-22 15:30:43 +0300
committerBrodie Thiesfield <brofield@gmail.com>2007-01-22 15:30:43 +0300
commita8efe3630ffe8818944071afd2a51e20b0d412f2 (patch)
tree16822e78740747c44d90f0268c063a215674aaea /Makefile
parentc123a1b2caeb386363ce79e9e58038b435128989 (diff)
version 4.0 release
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..04dbba6
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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)