#******************************************************************************* # E.S.O. - VLT project # # "@(#) $Id: Makefile,v 1.10 2000/12/05 15:54:36 vltsccm Exp $" # # Makefile of ........ # # who when what # -------- -------- ---------------------------------------------- # almamgr 2000-07-20 created # #******************************************************************************* # This Makefile follows VLT Standards (see Makefile(5) for more). #******************************************************************************* # REMARKS # None #------------------------------------------------------------------------ USER_CFLAGS = -DUSE_ACS USER_LIB = -lbaci -lcdb -lACE -lTAO -lCCS # Program to build # Can be overwritten in the call PROG = # # MODULE CODE DESCRIPTION: # ------------------------ # As a general rule: public file are "cleaned" and "installed" # local (_L) are not "installed". # # C programs (public and local) # ----------------------------- EXECUTABLES = server client EXECUTABLES_L = # # client_OBJECTS = client testC client_LIBS = server_OBJECTS = server test_i testC testS server_LIBS = # # special compilation flags for single c sources #yyyyy_CFLAGS = # # Includes (.h) files (public and local) # --------------------------------- INCLUDES = INCLUDES_L = test_i.h # # Libraries (public and local) # ---------------------------- LIBRARIES = LIBRARIES_L = # # Scripts (public and local) # ---------------------------- SCRIPTS = SCRIPTS_L = # # 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)) # # IDL FILES # IDL_FILES = test # #>>>>> END OF standard rules # # CHOSE PLATFORM # -------------- # Default is UNIX, for VxVorks application next line MUST BE UNCOMMENTED #MAKE_VXWORKS = on # # INCLUDE STANDARDS # ----------------- ifdef ACSROOT MAKEDIR = $(ACSROOT)/include include $(MAKEDIR)/acsMakefile else MAKEDIR = $(VLTROOT)/include include $(MAKEDIR)/vltMakefile endif # # TARGETS # ------- all: do_all @echo " . . . 'all' done" clean : clean_all $(RM) *~ ../include/*~ ../dbl/*~ ../idl/*~ ../*~ core @echo " . . . clean done" gman : do_man @echo " . . . man page(s) done" install : install_all @echo " . . . installation done" db : db_all @echo " . . . ../DB done" #___oOo___