#%# #******************************************************************************* #%# # E.S.O. - ALMA project #%# # #%# # "@(#) $Id: Makefile_LCU.template,v 1.67 2008/04/04 15:04:45 mpasquat Exp $" #%# # #%# # REMARK: This file belongs to the "acsMake" module. #%# # #%# # who when what #%# # -------- -------- ---------------------------------------------- #%# # psivera 00/10/06 created #%# # psivera 01/06/16 added clean_dist target #%# # mpasquat 2003-02-28 added test target #%# #%# This file has been prepared to be pre-processed by "getTemplate". #%# If you are using it by hand, please: #%# - remove all lines starting with #%# #%# - delete ">-<" in "$I>-- xxxxx_OBJECTS = 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_L = # # lllll_OBJECTS = # # Scripts (public and local) # ---------------------------- SCRIPTS = SCRIPTS_L = # # TCL scripts (public and local) # ------------------------------ TCL_SCRIPTS = TCL_SCRIPTS_L = # # tttttt_OBJECTS = tttttt_TCLSH = tttttt_LIBS = # # TCL libraries (public and local) # ------------------------------ TCL_LIBRARIES = TCL_LIBRARIES_L = # # tttlll_OBJECTS = # # IDL Files and flags # IDL_FILES = TAO_IDLFLAGS = USER_IDL = # # Configuration Database Files # ---------------------------- CDB_SCHEMAS = # # 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 = # # other files to be installed #---------------------------- INSTALL_FILES = # # 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 # -------------- # This is a LCU Makefile, so for VxVorks applications we set: MAKE_VXWORKS = on # # INCLUDE STANDARDS # ----------------- MAKEDIRTMP := $(shell searchFile include/acsMakefile) ifneq ($(MAKEDIRTMP),\#error\#) MAKEDIR := $(MAKEDIRTMP)/include include $(MAKEDIR)/acsMakefile endif # # TARGETS # ------- all: do_all @echo " . . . 'all' done" clean : clean_all @echo " . . . clean done" clean_dist : clean_all clean_dist_all @echo " . . . clean_dist done" man : do_man @echo " . . . man page(s) done" install : install_all @echo " . . . installation done" #___oOo___