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: d69ea94a05f89e1451a18e07ab1164905176ad3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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)