Revision 6171c1a792bf52f9d20a4a9007f1017bff8414d9 authored by Rene Brun on 27 February 2004, 14:30:28 UTC, committed by Rene Brun on 27 February 2004, 14:30:28 UTC
the formula has no parameters. This fixes a problem with TF12.
This fix had already been done a few months ago, but had been lost
in a more recent version of TFormula.


git-svn-id: http://root.cern.ch/svn/root/trunk@8311 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent aabf22d
Raw File
Module.mk
# Module.mk for rootx module
# Copyright (c) 2000 Rene Brun and Fons Rademakers
#
# Author: Fons Rademakers, 29/2/2000

MODDIR       := rootx
MODDIRS      := $(MODDIR)/src
MODDIRI      := $(MODDIR)/inc

ROOTXDIR     := $(MODDIR)
ROOTXDIRS    := $(ROOTXDIR)/src
ROOTXDIRI    := $(ROOTXDIR)/inc

##### rootx #####
ROOTXH       := $(wildcard $(MODDIRI)/*.h)
ROOTXS       := $(wildcard $(MODDIRS)/*.cxx)
ROOTXO       := $(ROOTXS:.cxx=.o)
ROOTXDEP     := $(ROOTXO:.o=.d)
ROOTX        := bin/root

# used in the main Makefile
ALLHDRS      += $(patsubst $(MODDIRI)/%.h,include/%.h,$(ROOTXH))
ALLEXECS     += $(ROOTX)

# include all dependency files
INCLUDEFILES += $(ROOTXDEP)

##### local rules #####
include/%.h:    $(ROOTXDIRI)/%.h
		cp $< $@

$(ROOTX):       $(ROOTXO)
		$(LD) $(LDFLAGS) -o $@ $(ROOTXO) $(XLIBS)

all-rootx:      $(ROOTX)

clean-rootx:
		@rm -f $(ROOTXO)

clean::         clean-rootx

distclean-rootx: clean-rootx
		@rm -f $(ROOTXDEP) $(ROOTX)

distclean::     distclean-rootx
back to top