#******************************************************************************* # E.S.O. - VLT project # # "@(#) $Id: Makefile,v 1.23 2012/03/23 13:28:16 tstaig Exp $" # # Makefile of Object Explorer # # who when what # -------- -------- ---------------------------------------------- # gchiozzi 2002-11-27 Gif file are handle with oe_EXTRAS option # gchiozzi 2002-11-27 Taken oe java code outside of VAJ # almamgr 2001-09-18 uses acsMakefile and not vltMakefile # jdovc 17/09/01 created # jdovc 19/02/02 apputil.jar added # #******************************************************************************* # This Makefile follows VLT Standards (see Makefile(5) for more). #******************************************************************************* # REMARKS # None #------------------------------------------------------------------------ # # Java code # ------------------------------ JARFILES = oe # reverted to previous acs Makefile # following line to be used in the future oe_DIRS = si oe_EXTRAS = device.gif domain.gif invocation.gif property.gif type.gif oe_JLIBS=objexpErrType ACSERRDEF = objexpErrType # # Scripts (public and local) # ---------------------------- SCRIPTS = objexp objexpNonSticky objexpSticky SCRIPTS_L = # # 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 # -------------- # Default is UNIX, for VxVorks application next line MUST BE UNCOMMENTED #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 clean_dist_all @echo "Removing files generated by eclipse" $(RM) -rf ../bin/* hs_err* @echo " . . . clean done" man : do_man @echo " . . . man page(s) done" install : install_all @echo " . . . installation done" #___oOo___