mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-06 07:49:02 +00:00
*/Mercury.options:
compiler/*.m:
extras/references/c_references.h:
extras/references/samples/max_test.m:
scripts/mprof_merge_runs:
As above.
30 lines
917 B
Makefile
30 lines
917 B
Makefile
#-----------------------------------------------------------------------------#
|
|
# vim: ts=8 sw=8 noexpandtab ft=make
|
|
#-----------------------------------------------------------------------------#
|
|
# Copyright (C) 2003-2004, 2006 The University of Melbourne.
|
|
# This file may only be copied under the terms of the GNU General
|
|
# Public Licence - see the file COPYING in the Mercury distribution.
|
|
#-----------------------------------------------------------------------------#
|
|
|
|
# Mmakefile for Peter Schachte's ROBDD package.
|
|
|
|
MAIN_TARGET=robdd
|
|
|
|
MERCURY_DIR=..
|
|
include $(MERCURY_DIR)/Mmake.common
|
|
|
|
MGNUC = $(SCRIPTS_DIR)/mgnuc --no-mercury-stdlib-dir
|
|
|
|
EXTRA_CFLAGS = -I$(BROWSER_DIR) -I$(LIBRARY_DIR) -I$(RUNTIME_DIR) \
|
|
-I$(BOEHM_GC_DIR) -I$(BOEHM_GC_DIR)/include
|
|
|
|
CFILES = bryant.c
|
|
|
|
OBJS = $(CFILES:.c=.$O)
|
|
PIC_OBJS = $(CFILES:.c=.$(EXT_FOR_PIC_OBJECTS))
|
|
|
|
.PHONY: robdd
|
|
robdd: $(OBJS) $(PIC_OBJS)
|
|
|
|
include Makefile
|