Skip to content
Snippets Groups Projects
Commit 779c5aff authored by Axel Naumann's avatar Axel Naumann
Browse files

Enable out-of-source builds

git-svn-id: http://root.cern.ch/svn/root/trunk@41485 27541ba8-7e3a-0410-8455-c3a389f83636
parent 19acee09
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@
# Author: g.p.ciceri <gp.ciceri@acm.org>, 1/06/2001
MODNAME := pgsql
MODDIR := sql/$(MODNAME)
MODDIR := $(ROOT_SRCDIR)/sql/$(MODNAME)
MODDIRS := $(MODDIR)/src
MODDIRI := $(MODDIR)/inc
......@@ -14,13 +14,13 @@ PGSQLDIRI := $(PGSQLDIR)/inc
##### libPgSQL #####
PGSQLL := $(MODDIRI)/LinkDef.h
PGSQLDS := $(MODDIRS)/G__PgSQL.cxx
PGSQLDS := $(call stripsrc,$(MODDIRS)/G__PgSQL.cxx)
PGSQLDO := $(PGSQLDS:.cxx=.o)
PGSQLDH := $(PGSQLDS:.cxx=.h)
PGSQLH := $(filter-out $(MODDIRI)/LinkDef%,$(wildcard $(MODDIRI)/*.h))
PGSQLS := $(filter-out $(MODDIRS)/G__%,$(wildcard $(MODDIRS)/*.cxx))
PGSQLO := $(PGSQLS:.cxx=.o)
PGSQLO := $(call stripsrc,$(PGSQLS:.cxx=.o))
PGSQLDEP := $(PGSQLO:.o=.d) $(PGSQLDO:.o=.d)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment