diff options
author | Dane Smith <c1pher@gentoo.org> | 2011-02-24 10:04:41 -0500 |
---|---|---|
committer | Dane Smith <c1pher@gentoo.org> | 2011-02-24 10:04:41 -0500 |
commit | 695370a94d9797faa8a7be909b5a9f761a66ab0c (patch) | |
tree | 6998ce63f983acb6f87540ddad415ccdfe053878 | |
parent | Revert makefile. (diff) | |
download | c1pher-695370a94d9797faa8a7be909b5a9f761a66ab0c.tar.gz c1pher-695370a94d9797faa8a7be909b5a9f761a66ab0c.tar.bz2 c1pher-695370a94d9797faa8a7be909b5a9f761a66ab0c.zip |
Move forward 1 commit.
-rw-r--r-- | dev-util/ati-stream-sdk/Manifest | 2 | ||||
-rw-r--r-- | dev-util/ati-stream-sdk/files/Makefile | 19 |
2 files changed, 12 insertions, 9 deletions
diff --git a/dev-util/ati-stream-sdk/Manifest b/dev-util/ati-stream-sdk/Manifest index f22c302..735dde4 100644 --- a/dev-util/ati-stream-sdk/Manifest +++ b/dev-util/ati-stream-sdk/Manifest @@ -1,4 +1,4 @@ -AUX Makefile 2206 RMD160 75f1ebb649aa8111e750c75b03452c7df9ffae5d SHA1 0644e3c66b2801e4cfe0663a4a81aa148d7360e8 SHA256 70ff4dbcbcd759babce9a1eb9fa355c7797116753e8f356eaaef1cea3469bf44 +AUX Makefile 2284 RMD160 88e0aa563e687c03219676b95c9f464093a7f4be SHA1 517c1088e3917f6a8f8b6358df7de2d964beb192 SHA256 2c6b248be818dc05dd0047cd92f0beaab6ac42689cce858f9d8b9dcd1fe5de3d DIST ati-stream-sdk-v2.3-lnx32.tgz 49912168 RMD160 07c045de3118531472672e9ef7b3763cb32f7d68 SHA1 972bdbe6942e52411a2f041720348e857f17c388 SHA256 07fd15a51a678c4378767f61466daf9da21d0bab6088a97a70136dd8c976aca6 DIST ati-stream-sdk-v2.3-lnx64.tgz 78659015 RMD160 57af36f62e590ae54cb9d43b880735979b77466c SHA1 43c94e5126563fe3fa4cb92fb6dd20f12864a86d SHA256 f92537d1fc306af0bff1441af4669bf2fa668654b12d9fb53a3a872dc8826cad EBUILD ati-stream-sdk-2.3-r1.ebuild 1785 RMD160 a49779dcf7c9cc2c759edd252a8de82fb2b4731a SHA1 78f96f8730fb3da67dc6939a646567bf82174217 SHA256 b1f1607754f6ca3cb4784242dd260a9e8a6738d08fc7923dbf02ecdd9ee576aa diff --git a/dev-util/ati-stream-sdk/files/Makefile b/dev-util/ati-stream-sdk/files/Makefile index 1052039..9828850 100644 --- a/dev-util/ati-stream-sdk/files/Makefile +++ b/dev-util/ati-stream-sdk/files/Makefile @@ -24,10 +24,7 @@ DSUFX= SUFX=32 endif -install: - test -z "$(BINDIR)" || $(MKDIR) "$(BINDIR)" - test -z "$(LIBDIR)" || $(MKDIR) "$(LIBDIR)" - test -z "$(INCDIR)" || $(MKDIR) "$(INCDIR)" +install-etc: test -z "$(ETCDIR)" || $(MKDIR) "$(ETCDIR)" tar -xzf icd-registration.tgz || exit 1 @list='$(ETCFILES)'; for f in $$list; do\ @@ -40,6 +37,9 @@ install: $(INSTALLDAT) "$$f" $(ETCDIR)$$f1 || exit 1;\ else :; fi;\ done + +install-bin: + test -z "$(BINDIR)" || $(MKDIR) "$(BINDIR)" @list='$(BINFILES)'; for f in $$list; do\ if test -f $$f; then\ f1=`basename $$f`;\ @@ -47,6 +47,9 @@ install: $(INSTALLBIN) "$$f" "$(BINDIR)$$f1" || exit 1;\ else :; fi;\ done + +install-lib: + test -z "$(LIBDIR)" || $(MKDIR) "$(LIBDIR)" @list='$(LIBFILES)'; for f in $$list; do\ if test -f $$f; then\ f1=`echo $$f | sed -e 's|lib/||g' -e 's|x86*/||g'`;\ @@ -57,6 +60,9 @@ install: $(INSTALLBIN) "$$f" "$(LIBDIR)$$f1" || exit 1;\ else :; fi;\ done + +install-include: + test -z "$(INCDIR)" || $(MKDIR) "$(INCDIR)" @list='$(INCFILES)'; for f in $$list; do\ if test -f $$f; then\ f1=`echo $$f | sed -e 's|include||g'`;\ @@ -68,7 +74,4 @@ install: else :; fi;\ done -install-examples: - -install-doc: - +install: install-etc install-bin install-lib install-include |