mirror of
https://github.com/yarrick/iodine.git
synced 2024-11-03 06:57:27 +00:00
423cbec41d
Also updated changelog.
81 lines
2.5 KiB
Makefile
81 lines
2.5 KiB
Makefile
prefix?=/usr/local
|
|
sbindir=$(prefix)/sbin
|
|
datadir=$(prefix)/share
|
|
mandir=$(datadir)/man
|
|
|
|
DESTDIR=
|
|
|
|
INSTALL=install
|
|
INSTALL_FLAGS=
|
|
|
|
MKDIR=mkdir
|
|
MKDIR_FLAGS=-p
|
|
|
|
RM=rm
|
|
RM_FLAGS=-f
|
|
|
|
TARGETOS = `uname`
|
|
|
|
all:
|
|
@(cd src; $(MAKE) TARGETOS=$(TARGETOS) all)
|
|
|
|
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
|
|
|
|
cross-mingw:
|
|
@(cd src; $(MAKE) TARGETOS=windows32 CC=i686-mingw32-gcc all)
|
|
|
|
cross-mingw-dist: cross-mingw
|
|
@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
|
|
@cp README README-win32.txt CH* TO* iodine-latest-win32
|
|
@echo "Create date: " > iodine-latest-win32/VERSION
|
|
@date >> iodine-latest-win32/VERSION
|
|
@echo "Git version: " >> iodine-latest-win32/VERSION
|
|
@git rev-parse HEAD >> iodine-latest-win32/VERSION
|
|
@zip -r iodine-latest-win32.zip iodine-latest-win32
|
|
|
|
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
|
|
|
|
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"
|
|
@echo "!! Get it at http://check.sf.net"
|
|
@(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all)
|
|
|
|
clean:
|
|
@echo "Cleaning..."
|
|
@(cd src; $(MAKE) clean)
|
|
@(cd tests; $(MAKE) clean)
|
|
@rm -rf bin iodine-latest-win32* iodine-latest-android*
|
|
|