mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-09-07 12:48:03 +00:00
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
# 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/
|
||||
Reference in New Issue
Block a user