Files
mercury/robdd/Mmakefile
Julien Fischer dc2c470787 Update and fix copyright notices.
*/Mercury.options:
compiler/*.m:
extras/references/c_references.h:
extras/references/samples/max_test.m:
scripts/mprof_merge_runs:
     As above.
2024-12-30 20:17:22 +11:00

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