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
|
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`
|
|
|
|
|
2006-11-09 19:09:47 +00:00
|
|
|
all:
|
2009-01-25 16:28:17 +00:00
|
|
|
@(cd src; $(MAKE) TARGETOS=$(TARGETOS) all)
|
|
|
|
|
2012-02-04 23:36:15 +00:00
|
|
|
cross-android:
|
|
|
|
@(cd src; $(MAKE) base64u.c base64u.h)
|
|
|
|
@(cd src; ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=Android.mk)
|
|
|
|
|
|
|
|
cross-android-dist:
|
|
|
|
@rm -rf iodine-latest-android*
|
|
|
|
@mkdir -p iodine-latest-android/armeabi iodine-latest-android/x86
|
|
|
|
@$(MAKE) cross-android TARGET_ARCH_ABI=armeabi
|
|
|
|
@cp src/libs/armeabi/* iodine-latest-android/armeabi
|
|
|
|
@$(MAKE) cross-android TARGET_ARCH_ABI=x86
|
|
|
|
@cp src/libs/x86/* iodine-latest-android/x86
|
|
|
|
@cp README README-android.txt CH* TO* iodine-latest-android
|
|
|
|
@echo "Create date: " > iodine-latest-android/VERSION
|
|
|
|
@date >> iodine-latest-android/VERSION
|
|
|
|
@echo "Git version: " >> iodine-latest-android/VERSION
|
|
|
|
@git rev-parse HEAD >> iodine-latest-android/VERSION
|
|
|
|
@zip -r iodine-latest-android.zip iodine-latest-android
|
|
|
|
|
2009-01-25 16:28:17 +00:00
|
|
|
cross-mingw:
|
|
|
|
@(cd src; $(MAKE) TARGETOS=windows32 CC=i686-mingw32-gcc all)
|
2006-11-09 19:09:47 +00:00
|
|
|
|
2009-01-25 18:13:00 +00:00
|
|
|
cross-mingw-dist: cross-mingw
|
2009-01-25 21:21:33 +00:00
|
|
|
@rm -rf iodine-latest-win32*
|
|
|
|
@mkdir -p iodine-latest-win32/bin
|
|
|
|
@for i in `ls bin`; do cp bin/$$i iodine-latest-win32/bin/$$i.exe; done
|
|
|
|
@cp /usr/i686-mingw32/usr/bin/zlib1.dll iodine-latest-win32/bin
|
2012-02-04 23:36:15 +00:00
|
|
|
@cp README README-win32.txt CH* TO* iodine-latest-win32
|
2009-01-25 21:21:33 +00:00
|
|
|
@echo "Create date: " > iodine-latest-win32/VERSION
|
|
|
|
@date >> iodine-latest-win32/VERSION
|
2012-02-04 23:36:15 +00:00
|
|
|
@echo "Git version: " >> iodine-latest-win32/VERSION
|
|
|
|
@git rev-parse HEAD >> iodine-latest-win32/VERSION
|
2009-01-25 21:21:33 +00:00
|
|
|
@zip -r iodine-latest-win32.zip iodine-latest-win32
|
2009-01-25 18:13:00 +00:00
|
|
|
|
2007-02-10 17:29:19 +00:00
|
|
|
install: all
|
2007-06-17 12:32:16 +00:00
|
|
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(sbindir)
|
2007-06-17 12:54:49 +00:00
|
|
|
$(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
|
2007-06-17 12:32:16 +00:00
|
|
|
$(MKDIR) $(MKDIR_FLAGS) $(DESTDIR)$(mandir)/man8
|
|
|
|
$(INSTALL) $(INSTALL_FLAGS) man/iodine.8 $(DESTDIR)$(mandir)/man8/iodine.8
|
2007-06-17 12:54:49 +00:00
|
|
|
chmod 644 $(DESTDIR)$(mandir)/man8/iodine.8
|
2007-02-10 17:29:19 +00:00
|
|
|
|
|
|
|
uninstall:
|
2007-06-24 10:33:40 +00:00
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine
|
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined
|
|
|
|
$(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
|
2007-02-10 17:29:19 +00:00
|
|
|
|
2006-12-16 00:10:03 +00:00
|
|
|
test: all
|
2007-07-11 21:31:49 +00:00
|
|
|
@echo "!! The check library is required for compiling and running the tests"
|
|
|
|
@echo "!! Get it at http://check.sf.net"
|
2009-01-25 16:28:17 +00:00
|
|
|
@(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all)
|
2006-12-16 00:10:03 +00:00
|
|
|
|
2006-11-09 19:09:47 +00:00
|
|
|
clean:
|
|
|
|
@echo "Cleaning..."
|
2007-11-27 20:00:45 +00:00
|
|
|
@(cd src; $(MAKE) clean)
|
|
|
|
@(cd tests; $(MAKE) clean)
|
2012-02-04 23:36:15 +00:00
|
|
|
@rm -rf bin iodine-latest-win32* iodine-latest-android*
|
2006-11-09 19:09:47 +00:00
|
|
|
|