diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-25 14:28:10 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-25 14:28:10 +0000 |
commit | a81ef5ceffaf1af9f7542d7365284b6ca0e17eff (patch) | |
tree | 1f260684422d7f1eeb5829aec3246488e7c64ee1 /abstractions/Makefile | |
parent | dcad6a5a8a078a7e26b3fb8a43a52aca206c0514 (diff) |
Modified mtl entry in the Makefile
svn path=/trunk/; revision=12673
Diffstat (limited to 'abstractions/Makefile')
-rw-r--r-- | abstractions/Makefile | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/abstractions/Makefile b/abstractions/Makefile index c94c038b..5dd38baf 100644 --- a/abstractions/Makefile +++ b/abstractions/Makefile @@ -335,21 +335,30 @@ pddp_install: #-------------------------------------------------------------------------------
# mtl MTL_NAME = mtl -mtl_install: +mtl_install:
+ install -d $(DESTDIR)$(objectsdir)/$(MTL_NAME) $(scripts_src)/generate-libdir-metafile.sh $(DESTDIR)$(objectsdir) $(MTL_NAME) \ --author "Thomas O Fredericks and 11h11" \ --license "If you use and die, it's not our fault" \ --description "(Pure Data) Montreal Abstractions" - install -d $(DESTDIR)$(objectsdir)/$(MTL_NAME) install -p $(shell ls -1 $(abstractions_src)/$(MTL_NAME)/*.pd | \ - grep -v '\-help.pd') $(DESTDIR)$(objectsdir)/$(MTL_NAME) + grep -v '\-help.pd') $(DESTDIR)$(objectsdir)/$(MTL_NAME)
install -d $(DESTDIR)$(helpdir)/$(MTL_NAME) install -p $(abstractions_src)/$(MTL_NAME)/*-help.pd \ - $(DESTDIR)$(helpdir)/$(MTL_NAME) + $(DESTDIR)$(helpdir)/$(MTL_NAME)
+ install -p $(abstractions_src)/$(MTL_NAME)/browser.pd \
+ $(DESTDIR)$(helpdir)/$(MTL_NAME)
+ install -p $(abstractions_src)/$(MTL_NAME)/1-13LP.pd \
+ $(DESTDIR)$(helpdir)/$(MTL_NAME)
+ install -p $(abstractions_src)/$(MTL_NAME)/*.txt \
+ $(DESTDIR)$(objectsdir)/$(MTL_NAME)
+ install -p $(abstractions_src)/$(MTL_NAME)/*.txt \
+ $(DESTDIR)$(helpdir)/$(MTL_NAME) install -d $(DESTDIR)$(helpdir)/$(MTL_NAME)/examples - install -p $(abstractions_src)/$(MTL_NAME)/examples/*.pd \ + install -p $(abstractions_src)/$(MTL_NAME)/examples/*.pd \
$(DESTDIR)$(helpdir)/$(MTL_NAME)/examples
+
#-------------------------------------------------------------------------------
# pdsvn
PDSVN_NAME = pdsvn
|