Description: Provide main Makefile for whole source tree By design this patch is not needed to be sent upstream. Forwarded: not-needed Author: Mike Gabriel Last-Update: 2011-12-31 --- /dev/null +++ b/Makefile @@ -0,0 +1,42 @@ +#!/usr/bin/make -f + +all: build + +build: build-arch build-indep + +clean: + -make -C nx-X11 $@ + -make -C nxcomp $@ + -make -C nxcompext $@ + -make -C nxcompshad $@ + -make -C nxproxy $@ + +distclean: + -make -C nx-X11 $@ + -make -C nxcomp $@ + -make -C nxcompext $@ + -make -C nxcompshad $@ + -make -C nxproxy $@ + +build-arch: + cd nxcomp && autoconf && ./configure && make + -cd nxcompext && autoconf && ./configure && make + -cd nxcompshad && autoconf && ./configure && make + -cd nx-X11 && make World && ./configure && make + cd nxproxy && autoconf && ./configure && make + +build-indep: + +install: + -make -C nx-X11 $@ + -make -C nxcomp $@ + -make -C nxcompext $@ + -make -C nxcompshad $@ + -make -C nxproxy $@ + +uninstall: + -make -C nx-X11 $@ + -make -C nxcomp $@ + -make -C nxcompext $@ + -make -C nxcompshad $@ + -make -C nxproxy $@