1
0
Fork 0
forked from eden-emu/eden
eden/externals/simpleini/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
400 B
Makefile
Raw Normal View History

# This makefile is just to build the automatic test harness
# To use SimpleIni, just include SimpleIni.h header file
PREFIX?= /usr/local
TOPTARGETS := all clean test
SUBDIRS := tests
$(TOPTARGETS): $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@ $(MAKECMDGOALS)
.PHONY: $(TOPTARGETS) $(SUBDIRS)
install:
mkdir -p $(DESTDIR)$(PREFIX)/include/
install -C -m 644 SimpleIni.h $(DESTDIR)$(PREFIX)/include/