This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/utils/magimail/Makefile

22 lines
532 B
Makefile
Raw Normal View History

2017-03-18 13:04:38 +00:00
# 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
all:
2017-03-18 13:04:38 +00:00
mkdir -p bin
${MAKE} -C src -f Makefile all
2017-03-18 13:04:38 +00:00
clean:
2017-03-18 13:04:38 +00:00
rm -rf bin
${MAKE} -C src -f Makefile clean
2017-03-18 13:04:38 +00:00
freebsd: all
linux: all
cleanfreebsd: clean
cleanlinux: clean