mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 04:43:53 +00:00
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.
22 lines
760 B
Plaintext
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
|