#*******************************************************************************
# E.S.O. - VLT project
#
# "@(#) $Id: Makefile,v 1.1.1.1 2003/05/28 16:58:56 gchiozzi Exp $" 
#
# Makefile of sla - astronomical coordinate converter (runs on LCUs) 
#
# who       when      what
# --------  --------  ----------------------------------------------
# gchiozzi  04/06/97  Added entries for include files in ASCII_TO_MIF.
# gchiozzi  13/12/95  Modified for workstation
# mnastvog  18/01/95  created
# bgilli    18/10/95  added dsmat

#*******************************************************************************
# This Makefile follows VLT Standards (see Makefile(5) for more).
#*******************************************************************************
# REMARKS
#    None
#------------------------------------------------------------------------

#
# user definable C-compilation flags
#USER_CFLAGS =

#
# additional include and library search paths
#USER_INC = 
#USER_LIB = 

#
# MODULE CODE DESCRIPTION:
# ------------------------
# As a general rule:  public file are "cleaned" and "installed"  
#                     local (_L) are not "installed".

#
# C programs (public and local)
# -----------------------------
#EXECUTABLES_L   = 

#xxxxx_LDFLAGS   =
#xxxxx_LIBS      =

# special compilation flags for single c sources
#yyyyy_CFLAGS   = 

#
# Includes (.h) files (public only)
# ---------------------------------
INCLUDES        =

#
# Libraries (public and local)
# ----------------------------
#LIBRARIES       = 
LIBRARIES        =

#
# astronomical coordinate converter

#
# special compilation flags for single c sources
#wiastro_CFLAGS  = -DVXWORKS 

#
# <brief description of lllll library>
lllll_OBJECTS   =

#
# Scripts (public and local)
# ----------------------------
SCRIPTS         =
SCRIPTS_L       =

#
# TCL scripts (public and local)
# ------------------------------
TCL_SCRIPTS     =
TCL_SCRIPTS_L   =

#
# <brief description of tttttt tcl-script>
tttttt_OBJECTS  =
tttttt_TCLSH    = 
tttttt_LIBS     = 

#
# TCL libraries (public and local)
# ------------------------------
TCL_LIBRARIES   =
TCL_LIBRARIES_L =

#
# <brief description of tttlll library>
tttlll_OBJECTS  = 


#
# man pages to be done
# --------------------
MANSECTIONS =
MAN1 =
MAN3 =
MAN5 =
MAN7 =
MAN8 =

#
# local man pages
# ---------------
MANl =

#
# ASCII file to be converted into Framemaker-MIF
# --------------------
ASCII_TO_MIF =


#
# list of all possible C-sources (used to create automatic dependencies)
# ------------------------------
CSOURCENAMES = \
	$(foreach exe, $(EXECUTABLES) $(EXECUTABLES_L), $($(exe)_OBJECTS)) \
	$(foreach lib, $(LIBRARIES) $(LIBRARIES_L), $($(lib)_OBJECTS))

#
#>>>>> END OF standard rules

#
# CHOSE PLATFORM
# --------------
# Default is UNIX, for VxVorks application next line MUST BE UNCOMMENTED
#MAKE_VXWORKS = on   

#
# INCLUDE STANDARDS
# -----------------
#MAKEDIR = $(VLTROOT)/include
#include $(MAKEDIR)/vltMakefile

#
# TARGETS
# -------
all:	
	@chmod u+x addVltIncludeHeader addVltSrcHeader slaPatch slaUpdate
	@slaUpdate
	@echo " . . . 'all' done" 

clean : 
	rm -fr *~ ../doc/*.pcode ../include/*~ ../*~ core ../CDT/*~
	@echo " . . . clean done"

man   : do_man 
	@echo " . . . man page(s) done"

install : install_all
	@echo " . . . installation done"

#___oOo___
