mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-16 09:53:36 +00:00
Branches: main, 11.01 Fix up various problems in some of the samples that cause the compiler to emit warnings. samples/diff/Mmakefile: Delete an old workaround for gcc 2.7.2 - we no longer support gcc versions that old. samples/diff/options.m: samples/muz/muz.m: samples/typecheck.m: Avoid some Mercury compiler warnings.
13 lines
395 B
Plaintext
13 lines
395 B
Plaintext
# An example of a *short* Mmake file
|
|
# In fact you don't really need any Mmake file at all,
|
|
# just `mmake diff.depend; mmake diff' is enough.
|
|
# But `mmake depend; mmake' is standard, so we will
|
|
# define a target `depend' and a default target `all'
|
|
# to make that work.
|
|
|
|
# This source file is hereby placed in the public domain. -fjh (the author).
|
|
|
|
MAIN_TARGET=all
|
|
depend: diff.depend
|
|
all: diff
|