# Makefile include file for IDL compiler

# IDL_CFE_VERSION	Defines what the current IDL CFE version is
IDL_CFE_VERSION =	\"1.2.2\"

# What OS we're compiling on. Define this to either SUNOS4 or SVR4. As
# shipped the CFE is configured for SUNOS4.
OSVER		= SUNOS4

# Define LEXFLAGS to pass -t
LEXFLAGS	= -t

# Define YFLAGS to pass -t -d
YFLAGS	 	= -t -d

# C++			What C++ compiler to use
C++		= CC

# Define where to find the C preprocessor
#CPP	        = /usr/lib/cpp

# What flags to pass to the C preprocessor
CPPFLAGS += -I../include -I. \
	    -DCPP_LOCATION=\"$(CPP)\" \
	    -DIDL_CFE_VERSION=$(IDL_CFE_VERSION) \

# What flags to pass to the CC phase
CCFLAGS	 = -g

# SCCS			What SCCS to use
SCCS		= sccs

# What ranlib to use
#RANLIB	        = ranlib

# What ar to use
AR	        = ar

# What flags to give to ar
ARFLAGS		= crv
