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