dockapps/wmail/Makefile.in

30 lines
764 B
Makefile

# process this file with configure to create a Makefile from it
#
# Makefile for wmail.
# Toplevel Makefile.
# Usage: make ..........: creates the wmail binary.
# make install ..: installs the binary under your default user binary
# directory.
# make uninstall : removes any installed wmail files.
# make clean ....: cleans the src directory.
@SET_MAKE@
default all target: wmail
wmail:
@cd src; $(MAKE) -f Makefile wmail
install:
@if ! test -f src/wmail; then $(MAKE) wmail; fi
@echo "Installing the binary under @bindir@."
@cp -f src/wmail @bindir@
uninstall:
@echo "Removing wmail files from your system."
@rm -f @bindir@/wmail
clean:
@echo "Cleaning src directory."
@cd src; $(MAKE) -f Makefile clean