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/src/Makefile

24 lines
508 B
Makefile
Raw Normal View History

# type either "make all" or "make win32" to compile
2017-03-18 13:04:38 +00:00
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
all:
2017-03-18 13:04:38 +00:00
mkdir -p obj
gmake -C cmnllib -f Makefile.linux
gmake -C oslib_linux
gmake -f Makefile.linux
clean:
2017-03-18 13:04:38 +00:00
gmake -C cmnllib -f Makefile.linux clean
gmake -C oslib_linux clean
gmake -f Makefile.linux clean
freebsd: all
linux: all
cleanlinux: clean
cleanfreebsd: clean