# Makefile for the ROOT test programs. # This Makefile shows nicely how to compile and link applications # using the ROOT libraries on all supported platforms. # # Copyright (c) 2000 Rene Brun and Fons Rademakers # # Author: Fons Rademakers, 29/2/2000 include Makefile.arch #-include ../MyConfig.mk #------------------------------------------------------------------------------ TXT2TREEO = txt2tree.$(ObjSuf) TXT2TREES = txt2tree.$(SrcSuf) TXT2TREE = txt2tree$(ExeSuf) OBJS = $(TXT2TREEO) PROGRAMS = $(TXT2TREE) #------------------------------------------------------------------------------ .SUFFIXES: .$(SrcSuf) .$(ObjSuf) .$(DllSuf) .PHONY: Hello all: $(PROGRAMS) $(TXT2TREE): $(TXT2TREEO) $(LD) $(LDFLAGS) $^ $(LIBS) $(OutPutOpt)$@ $(MT_EXE) @echo "$@ done" ##### clean: @rm -f $(OBJS) $(TRACKMATHSRC) core .SUFFIXES: .$(SrcSuf) ###