diff options
Diffstat (limited to 'xc/test/xsuite/xtest/lib/mc/mmxplib.mc')
-rw-r--r-- | xc/test/xsuite/xtest/lib/mc/mmxplib.mc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/xc/test/xsuite/xtest/lib/mc/mmxplib.mc b/xc/test/xsuite/xtest/lib/mc/mmxplib.mc new file mode 100644 index 000000000..3a0ecfde3 --- /dev/null +++ b/xc/test/xsuite/xtest/lib/mc/mmxplib.mc @@ -0,0 +1,20 @@ +# +# This part of the makefile checks for the existance of the libraries +# and creates them if necessary. +# + +# The xtestlib is made if it doesn't exist +# +$(XTESTLIB): + cd $(XTESTROOT)/src/lib; $(TET_BUILD_TOOL) install + +# The fontlib is made if it doesn't exist +# +$(XTESTFONTLIB): + cd $(XTESTROOT)/fonts; $(TET_BUILD_TOOL) install + +# The X Protocol test library is made if it doesn't exist +# +$(XSTLIB): + cd $(XTESTROOT)/src/libproto; $(TET_BUILD_TOOL) install + |