1 # process this file with configure to create a Makefile from it
5 # Usage: make ..........: creates the wmail binary.
6 # make install ..: installs the binary under your default user binary
8 # make uninstall : removes any installed wmail files.
9 # make clean ....: cleans the src directory.
13 default
all target
: wmail
16 @cd src
; $(MAKE
) -f Makefile wmail
19 @if
! test -f src
/wmail
; then
$(MAKE
) wmail
; fi
20 @echo
"Installing the binary under @bindir@."
21 @cp
-f src
/wmail @
bindir@
24 @echo
"Removing wmail files from your system."
28 @echo
"Cleaning src directory."
29 @cd src
; $(MAKE
) -f Makefile
clean