#****************************************************************************** # E.S.O. - VLT project # # "@(#) $Id: Makefile.tat6,v 1.76 2003/01/09 17:51:12 vltsccm Exp $" # # Makefile of "tat6" # # who when what # -------- -------- ---------------------------------------------- # pforstma 25/09/95 created # # # CHOSE PLATFORM # -------------- # Default is UNIX, for VxVorks application next line MUST BE UNCOMMENTED MAKE_VXWORKS = on # # C programs (public and local) # ----------------------------- EXECUTABLES = tatVxTest EXECUTABLES_L = tatVxTest_OBJECTS = tatVxTest tatVxTest_LDFLAGS = tatVxTest_LIBS = # # 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)) MAKEDIR = $(VLTROOT)/include include $(MAKEDIR)/vltMakefile # # TARGETS # ------- all: do_all -if [ "$(tat6)" = "DOIT" ] ;\ then chmod u+x tat61 ;\ fi @echo " . . . 'all' done" clean : clean_all @echo " . . . clean done" #___oOo___