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

View File

@@ -0,0 +1,29 @@
# type either "make linux" or "make win32" to compile
help:
@echo You can use this Makefile in the following ways:
@echo make linux ............ Make Linux binaries
@echo make cleanlinux ....... Remove object files under Linux
freebsd:
mkdir -p obj
gmake -C cmnllib -f Makefile.linux
gmake -C oslib_linux
gmake -f Makefile.linux
linux :
mkdir -p obj
make -C cmnllib -f Makefile.linux
make -C oslib_linux
make -f Makefile.linux
cleanfreebsd :
gmake -C cmnllib -f Makefile.linux clean
gmake -C oslib_linux clean
gmake -f Makefile.linux clean
cleanlinux :
make -C cmnllib -f Makefile.linux clean
make -C oslib_linux clean
make -f Makefile.linux clean