Revision 378f32b0866cf32f5e93ff3917f7d20ca0c7cd4c authored by Rene Brun on 26 February 2007, 14:39:47 UTC, committed by Rene Brun on 26 February 2007, 14:39:47 UTC
Following latest mods for delayed loading, TProofProgressDialog was not
working properly anymore (due to gClient usage before initialization of
graphics libs).
Thanks to Anna for reporting the bug.


git-svn-id: http://root.cern.ch/svn/root/trunk@18084 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 23b42ae
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