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:
authorwatercal <brofield@users.noreply.github.com>2020-06-16 17:57:49 +0300
committerwatercal <brofield@users.noreply.github.com>2020-06-16 17:57:49 +0300
commitff3ba14154eedec7f3f1b29a403cc072ca6846c2 (patch)
tree922ee506e3f4fee7af59f42a02534273dedecd3c /Makefile
parent3fea945de7264e7a6ae058211203a7f2b1a42b9d (diff)
Fixing build on linux
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d69ea94
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+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.
+
+install:
+ @echo No install required. Just include the SimpleIni.h header file to use it.
+
+TOPTARGETS := all clean test
+
+SUBDIRS := tests
+
+$(TOPTARGETS): $(SUBDIRS)
+$(SUBDIRS):
+ $(MAKE) -C $@ $(MAKECMDGOALS)
+
+.PHONY: $(TOPTARGETS) $(SUBDIRS)