Add magimail (crashmail2 fork) to repo

This commit is contained in:
Andrew Pamment
2017-03-18 23:04:38 +10:00
parent 8fad85affc
commit 807574ccf4
98 changed files with 23583 additions and 7 deletions

25
utils/magimail/Makefile Normal file
View File

@@ -0,0 +1,25 @@
# type either "make linux", "make win32", or "make os2" to compile
help:
@echo You can use this Makefile in the following ways:
@echo gmake freebsd ......... Make FreeBSD binaries
@echo make linux ............ Make Linux binaries
@echo gmake cleanfreebsd .... Remove object files under FreeBSD
@echo make cleanlinux ....... Remove object files under Linux
freebsd :
mkdir -p bin
gmake -C src -f Makefile freebsd
linux :
mkdir -p bin
make -C src -f Makefile linux
cleanfreebsd :
rm -rf bin
gmake -C src -f Makefile cleanfreebsd
cleanlinux :
rm -rf bin
make -C src -f Makefile cleanlinux