2010-07-21 07:21:24 +00:00
|
|
|
prefix?=/usr/local
|
2007-06-17 12:32:16 +00:00
|
|
|
sbindir=$(prefix)/sbin
|
|
|
|
datadir=$(prefix)/share
|
|
|
|
mandir=$(datadir)/man
|
2018-02-27 15:43:53 +00:00
|
|
|
docdir=$(datadir)/doc
|
2007-02-10 17:29:19 +00:00
|
|
|
|
2007-06-17 12:32:16 +00:00
|
|
|
DESTDIR=
|
|
|
|
|
|
|
|
INSTALL=install
|
2007-02-10 17:41:54 +00:00
|
|
|
INSTALL_FLAGS=
|
|
|
|
|
|
|
|
MKDIR=mkdir
|
|
|
|
MKDIR_FLAGS=-p
|
2007-02-10 17:29:19 +00:00
|
|
|
|
|
|
|
RM=rm
|
|
|
|
RM_FLAGS=-f
|
2006-11-09 19:09:47 +00:00
|
|
|
|
2009-01-25 16:28:17 +00:00
|
|
|
TARGETOS = `uname`
|
|
|
|
|
2014-06-01 06:34:18 +00:00
|
|
|
all:
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src TARGETOS=$(TARGETOS) all
|
2014-05-31 20:55:14 +00:00
|
|
|
|
|
|
|
install: all
|
|
|
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
|
|
|
|
$(INSTALL) $(INSTALL_FLAGS) bin/iodine $(DESTDIR)$(sbindir)/iodine
|
|
|
|
chmod 755 $(DESTDIR)$(sbindir)/iodine
|
|
|
|
$(INSTALL) $(INSTALL_FLAGS) bin/iodined $(DESTDIR)$(sbindir)/iodined
|
|
|
|
chmod 755 $(DESTDIR)$(sbindir)/iodined
|
|
|
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(mandir)/man8
|
|
|
|
$(INSTALL) $(INSTALL_FLAGS) man/iodine.8 $(DESTDIR)$(mandir)/man8/iodine.8
|
|
|
|
chmod 644 $(DESTDIR)$(mandir)/man8/iodine.8
|
2018-02-27 15:43:53 +00:00
|
|
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(docdir)/iodine
|
|
|
|
$(INSTALL) $(INSTALL_FLAGS) README.md $(DESTDIR)$(docdir)/iodine/README.md
|
|
|
|
chmod 644 $(DESTDIR)$(docdir)/iodine/README.md
|
2014-05-31 20:55:14 +00:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine
|
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined
|
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
|
|
|
|
|
|
|
|
test: all
|
|
|
|
@echo "!! The check library is required for compiling and running the tests"
|
2020-06-04 21:51:41 +00:00
|
|
|
@echo "!! Get it at https://libcheck.github.io/check/"
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C tests TARGETOS=$(TARGETOS) all
|
2014-05-31 20:55:14 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
@echo "Cleaning..."
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src clean
|
|
|
|
@$(MAKE) -C tests clean
|
2014-05-31 20:55:14 +00:00
|
|
|
@rm -rf bin iodine-latest*
|
2009-01-25 16:28:17 +00:00
|
|
|
|
2014-05-31 10:03:33 +00:00
|
|
|
#Helper target for windows/android zipfiles
|
|
|
|
iodine-latest:
|
|
|
|
@rm -rf iodine-latest*
|
|
|
|
@mkdir -p iodine-latest
|
|
|
|
@echo "Create date: " > iodine-latest/VERSION.txt
|
2015-08-05 17:54:09 +00:00
|
|
|
@LANG=en_US date >> iodine-latest/VERSION.txt
|
2014-05-31 10:03:33 +00:00
|
|
|
@echo "Git version: " >> iodine-latest/VERSION.txt
|
|
|
|
@git rev-parse HEAD >> iodine-latest/VERSION.txt
|
2020-05-24 14:17:33 +00:00
|
|
|
@for i in README.md CHANGELOG; do cp $$i iodine-latest/$$i.txt; done
|
2014-05-31 10:03:33 +00:00
|
|
|
@unix2dos iodine-latest/*
|
|
|
|
|
2015-08-05 17:33:50 +00:00
|
|
|
#non-PIE build for old android
|
|
|
|
cross-android-old:
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src base64u.c
|
2021-08-18 10:36:20 +00:00
|
|
|
@(cd src && ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.mk APP_PLATFORM=android-3)
|
2015-08-05 17:33:50 +00:00
|
|
|
|
|
|
|
#Position-indepedent build for modern android
|
2012-02-04 23:36:15 +00:00
|
|
|
cross-android:
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src base64u.c
|
2021-08-18 10:36:20 +00:00
|
|
|
@(cd src && ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.16.mk APP_PLATFORM=android-16)
|
2012-02-04 23:36:15 +00:00
|
|
|
|
2014-05-31 10:03:33 +00:00
|
|
|
iodine-latest-android.zip: iodine-latest
|
|
|
|
@mv iodine-latest iodine-latest-android
|
2015-08-05 17:33:50 +00:00
|
|
|
@mkdir -p iodine-latest-android/pre-kitkat/armeabi
|
|
|
|
@mkdir -p iodine-latest-android/pre-kitkat/x86
|
|
|
|
@$(MAKE) cross-android-old TARGET_ARCH_ABI=armeabi
|
|
|
|
@cp src/libs/armeabi/* iodine-latest-android/pre-kitkat/armeabi
|
|
|
|
@$(MAKE) cross-android-old TARGET_ARCH_ABI=x86
|
|
|
|
@cp src/libs/x86/* iodine-latest-android/pre-kitkat/x86
|
|
|
|
@rm -rf src/libs src/obj
|
|
|
|
@mkdir -p iodine-latest-android/armeabi
|
|
|
|
@mkdir -p iodine-latest-android/arm64-v8a
|
|
|
|
@mkdir -p iodine-latest-android/x86
|
2012-02-04 23:36:15 +00:00
|
|
|
@$(MAKE) cross-android TARGET_ARCH_ABI=armeabi
|
|
|
|
@cp src/libs/armeabi/* iodine-latest-android/armeabi
|
2015-08-05 17:33:50 +00:00
|
|
|
@$(MAKE) cross-android TARGET_ARCH_ABI=arm64-v8a
|
|
|
|
@cp src/libs/arm64-v8a/* iodine-latest-android/arm64-v8a
|
2012-02-04 23:36:15 +00:00
|
|
|
@$(MAKE) cross-android TARGET_ARCH_ABI=x86
|
|
|
|
@cp src/libs/x86/* iodine-latest-android/x86
|
2014-05-31 10:03:33 +00:00
|
|
|
@cp README-android.txt iodine-latest-android
|
2012-02-04 23:36:15 +00:00
|
|
|
@zip -r iodine-latest-android.zip iodine-latest-android
|
|
|
|
|
2014-05-31 10:03:33 +00:00
|
|
|
cross-mingw32:
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src TARGETOS=windows32 CC=i686-w64-mingw32-gcc all
|
2014-05-31 10:03:33 +00:00
|
|
|
|
|
|
|
cross-mingw64:
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src TARGETOS=windows32 CC=x86_64-w64-mingw32-gcc all
|
2014-05-31 10:03:33 +00:00
|
|
|
|
|
|
|
iodine-latest-windows.zip: iodine-latest
|
|
|
|
@mv iodine-latest iodine-latest-windows
|
|
|
|
@mkdir -p iodine-latest-windows/64bit iodine-latest-windows/32bit
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src TARGETOS=windows32 CC=i686-w64-mingw32-gcc clean all
|
2014-05-31 10:03:33 +00:00
|
|
|
@i686-w64-mingw32-strip bin/iodine*
|
|
|
|
@for i in `ls bin`; do cp bin/$$i iodine-latest-windows/32bit/$$i.exe; done
|
2023-04-17 07:48:33 +00:00
|
|
|
@cp /usr/i686-w64-mingw32/sys-root/mingw/bin/zlib1.dll iodine-latest-windows/32bit
|
2021-10-10 16:37:06 +00:00
|
|
|
@$(MAKE) -C src TARGETOS=windows32 CC=x86_64-w64-mingw32-gcc clean all
|
2014-05-31 10:03:33 +00:00
|
|
|
@x86_64-w64-mingw32-strip bin/iodine*
|
|
|
|
@for i in `ls bin`; do cp bin/$$i iodine-latest-windows/64bit/$$i.exe; done
|
2023-04-17 07:48:33 +00:00
|
|
|
@cp /usr/x86_64-w64-mingw32/sys-root/mingw/bin/zlib1.dll iodine-latest-windows/64bit
|
2014-05-31 10:03:33 +00:00
|
|
|
@cp README-win32.txt iodine-latest-windows
|
|
|
|
@zip -r iodine-latest-windows.zip iodine-latest-windows
|
|
|
|
|