diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-06-05 00:14:07 -0400 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-09-08 16:49:14 +0200 |
commit | 22ceab8074f24734de307ace4753728142240d65 (patch) | |
tree | 3c171fc6cc21409f254affc68c81346d4ba36690 /nexgb | |
parent | e9dc18b4f9a6a3f02dceaef93bafee3c826b8dd3 (diff) | |
download | haven-22ceab8074f24734de307ace4753728142240d65.tar.gz haven-22ceab8074f24734de307ace4753728142240d65.tar.xz haven-22ceab8074f24734de307ace4753728142240d65.zip |
Add rules for installing all packages.
Diffstat (limited to 'nexgb')
-rw-r--r-- | nexgb/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nexgb/Makefile b/nexgb/Makefile index f32e824..953b100 100644 --- a/nexgb/Makefile +++ b/nexgb/Makefile @@ -35,6 +35,16 @@ build-all: bigreq.b composite.b damage.b dpms.b dri2.b ge.b glx.b randr.b \ %.b: (cd $* ; go build) +# Installs each individual sub-package. +install: bigreq.i composite.i damage.i dpms.i dri2.i ge.i glx.i randr.i \ + record.i render.i res.i screensaver.i shape.i shm.i sync.i xcmisc.i \ + xevie.i xf86dri.i xf86vidmode.i xfixes.i xinerama.i xinput.i \ + xprint.i xproto.i xselinux.i xtest.i xv.i xvmc.i + go install + +%.i: + (cd $* ; go install) + # xc_misc is special because it has an underscore. # There's probably a way to do this better, but Makefiles aren't my strong suit. xc_misc.xml: build-xgbgen |