wmail: renamed configure.in to configure.ac.
[dockapps.git] / wmail / Makefile.in
blobbaa1c4b753cd7dd7e59d7ffc313bd918cb807731
1 # process this file with configure to create a Makefile from it
3 # Makefile for wmail.
4 # Toplevel Makefile.
5 # Usage: make ..........: creates the wmail binary.
6 # make install ..: installs the binary under your default user binary
7 # directory.
8 # make uninstall : removes any installed wmail files.
9 # make clean ....: cleans the src directory.
11 @SET_MAKE@
13 default all target: wmail
15 wmail:
16 @cd src; $(MAKE) -f Makefile wmail
18 install:
19 @if ! test -f src/wmail; then $(MAKE) wmail; fi
20 @echo "Installing the binary under @bindir@."
21 @cp -f src/wmail @bindir@
23 uninstall:
24 @echo "Removing wmail files from your system."
25 @rm -f @bindir@/wmail
27 clean:
28 @echo "Cleaning src directory."
29 @cd src; $(MAKE) -f Makefile clean