diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-07-13 19:54:49 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2010-07-13 19:54:49 +0000 |
commit | 37453bcbffb55590eb460499aec9f63f04da5d1a (patch) | |
tree | dccf34b4a228b09182bc38ab2f4906e7b7be14d1 /packages | |
parent | bf3294b9d68377a4f361972619b2bb7cb3d0f9a7 (diff) |
included Gem Base headers in package to make it easy to build Gem standalone objects
svn path=/trunk/; revision=13709
Diffstat (limited to 'packages')
-rw-r--r-- | packages/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/Makefile b/packages/Makefile index a92cecd8..efcd10b3 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -259,6 +259,10 @@ endif install -d $(DESTDIR)$(objectsdir)/$(GEM_NAME)/examples/$$dir ; \ install -p $(gem_src)/examples/$$dir/*.* $(DESTDIR)$(objectsdir)/$(GEM_NAME)/examples/$$dir ;\ done +# install Gem headers to make it easier to build standalone Gem objects + install -d $(DESTDIR)$(includedir)/Base + install -p $(gem_src)/src/Base/*.h $(DESTDIR)$(includedir)/Base/ +# links to keep the old-style placement for Gem examples in the Help Browser ifneq ($(OS_NAME),windows) install -d $(DESTDIR)$(examplesdir) ln -s ../../extra/$(GEM_NAME)/examples $(DESTDIR)$(examplesdir)/$(GEM_NAME) |