Files
mercury/extras/curses/sample/Mmakefile
Zoltan Somogyi d33273d033 Tell vim not to expand tabs in Makefiles.
This file-specific setting will override a default setting of expandtabs
in $HOME/.vimrc.

*/Makefile:
*/Mmakefile:
    As above.

tests/hard_coded/.gitignore:
    Don't ignore the purity subdir. This ignore must have been left over
    from when purity.m was a test in hard_coded, not hard_coded/purity,
    and it ignored an executable, not a directory.
2015-01-08 22:07:29 +11:00

22 lines
760 B
Plaintext

#-----------------------------------------------------------------------------#
# vim: ts=8 sw=8 noexpandtab
#-----------------------------------------------------------------------------#
# Specify location of the mcurses library
MCURSES_DIR = ..
# Tell mmake to use the mcurses library
VPATH = $(MCURSES_DIR):$(MMAKE_VPATH)
MCFLAGS = -I$(MCURSES_DIR) $(EXTRA_MCFLAGS)
MGNUCFLAGS = -I$(MCURSES_DIR) $(EXTRA_MGNUCFLAGS)
MLFLAGS = -R$(MCURSES_DIR) $(EXTRA_MLFLAGS) \
-L$(MCURSES_DIR)
# Note that you have to tell the linker to use the mcurses library
# AND the ncurses library (which mcurses is an interface for)
MLLIBS = -lmcurses -lncurses $(EXTRA_MLLIBS)
C2INITARGS = $(MCURSES_DIR)/mcurses.init
default_target: smalltest
depend: smalltest.depend