30 lines
915 B
Makefile
30 lines
915 B
Makefile
#*************************************************************************
|
|
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
|
|
# National Laboratory.
|
|
# Copyright (c) 2002 The Regents of the University of California, as
|
|
# Operator of Los Alamos National Laboratory.
|
|
# This file is distributed subject to a Software License Agreement found
|
|
# in the file LICENSE that is included with this distribution.
|
|
#*************************************************************************
|
|
#
|
|
# $Id$
|
|
#
|
|
TOP = ../..
|
|
|
|
# If a <top>/configure directory exists, build with 3.14 rules, else
|
|
# use <top>/config and the 3.13 rules.
|
|
ifeq (0, $(words $(notdir $(wildcard $(TOP)/configure))))
|
|
include $(TOP)/config/CONFIG_EXTENSIONS
|
|
include $(TOP)/config/RULES_ARCHS
|
|
else
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
PROD = msi
|
|
HTMLS = msi.html
|
|
|
|
msi_SRCS = msi.c
|
|
PROD_LIBS += Com
|
|
|
|
include $(TOP)/configure/RULES
|
|
endif
|