mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-15 01:13:30 +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.
33 lines
990 B
Plaintext
33 lines
990 B
Plaintext
#-----------------------------------------------------------------------------#
|
|
# vim: ts=8 sw=8 noexpandtab
|
|
#-----------------------------------------------------------------------------#
|
|
#
|
|
# Copyright (C) 2001 Ralph Becket <rbeck@microsoft.com>
|
|
#
|
|
# THIS FILE IS HEREBY CONTRIBUTED TO THE MERCURY PROJECT TO
|
|
# BE RELEASED UNDER WHATEVER LICENCE IS DEEMED APPROPRIATE
|
|
# BY THE ADMINISTRATORS OF THE MERCURY PROJECT.
|
|
|
|
# Specify the location of the `mypackage' and `myotherlib' directories
|
|
#
|
|
CURS_DIR = ..
|
|
|
|
DEMOS = demo nibbles frogger
|
|
|
|
depend: $(DEMOS:%=%.depend)
|
|
all: demos
|
|
clean: $(DEMOS:%=%.clean)
|
|
realclean: $(DEMOS:%=%.realclean)
|
|
demos: $(DEMOS)
|
|
|
|
# The following stuff tells Mmake to use the two libraries
|
|
VPATH = $(CURS_DIR):$(MMAKE_VPATH)
|
|
MCFLAGS = -I$(CURS_DIR) $(EXTRA_MCFLAGS)
|
|
MGNUCFLAGS = -I$(CURS_DIR)
|
|
MLFLAGS = -R$(CURS_DIR) $(EXTRA_MLFLAGS) \
|
|
-L$(CURS_DIR)
|
|
MLLIBS = -lcurs -lpanel -lncurses $(EXTRA_MLLIBS)
|
|
C2INITARGS = $(CURS_DIR)/curs.init
|
|
|
|
MAIN_TARGET = all
|