mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-29 16:24:43 +00:00
Add some missing .PHONY markers, and delete a stray .PHONY marker. Add some missing copyright years.
34 lines
935 B
Makefile
34 lines
935 B
Makefile
#-----------------------------------------------------------------------------#
|
|
# vim: ts=8 sw=8 noexpandtab ft=make
|
|
#-----------------------------------------------------------------------------#
|
|
# Copyright (C) 2000-2003 The University of Melbourne.
|
|
# Copyright (C) 2015-2018, 2022, 2025 The Mercury team.
|
|
# This file is distributed under the terms specified in COPYING.LIB.
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
include Ncurses.options
|
|
|
|
# This is needed to avoid conflicts with `bool'
|
|
CFLAGS = -DMERCURY_BOOTSTRAP_H
|
|
|
|
INSTALL_PREFIX := $(INSTALL_PREFIX)/extras
|
|
|
|
# Check that the values in the file Ncurses.options are appropriate for
|
|
# linking against ncurses on your system.
|
|
MLLIBS = $(NCURSES_LIBS)
|
|
|
|
-include ../Mmake.params
|
|
|
|
.PHONY: default_target
|
|
default_target: libmcurses
|
|
|
|
.PHONY: depend
|
|
depend: mcurses.depend
|
|
|
|
.PHONY: install
|
|
install: libmcurses.install
|
|
|
|
.PHONY: check
|
|
check:
|
|
true
|