diff options
| author | Andrew Gallant (Ocelot) <[email protected]> | 2012-06-05 00:14:07 -0400 |
|---|---|---|
| committer | Andrew Gallant (Ocelot) <[email protected]> | 2012-06-05 00:14:07 -0400 |
| commit | a5cb24d738e07457d7b079056973d593a6a2b919 (patch) | |
| tree | 40773d306cb53873ce7440a28e10e6322740928a | |
| parent | 2989c56dd190b0cacaada97c52eaeb7f153f5963 (diff) | |
Add rules for installing all packages.
| -rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |
