X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=doc%2FMakefile;h=39c411eb6264d55856a1e2e37094f30acac22453;hb=f7a356bb4c11d062eeeb5d4aaf4e187a3cb15a27;hp=f31c755d79675d9bc9747b41f07a59707628422a;hpb=c68ca8aa4c8d13857a878073fd6816cc72dc26a6;p=clsql.git diff --git a/doc/Makefile b/doc/Makefile index f31c755..39c411e 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -23,16 +23,26 @@ DOCFILE_EXT_DEFAULT:=xml DEBIAN=$(shell expr "`cat /etc/issue`" : '.*Debian.*') SUSE=$(shell expr "`cat /etc/issue`" : '.*SuSE.*') -REDHAT=$(shell expr "`cat /etc/issue`" : '.*RedHat.*') +SUSE91=$(shell expr "`cat /etc/issue`" : '.*SuSE Linux 9.1.*') +REDHAT=$(shell expr "`cat /etc/issue`" : '.*Red Hat.*') +MANDRAKE=$(shell expr "`cat /etc/issue`" : '.*Mandrake.*') ifneq (${DEBIAN},0) OS:=debian else - ifneq (${SUSE},0) - OS=suse - else - ifneq (${REDHAT},0) - OS=redhat + ifneq (${SUSE91},0) + OS=suse91 + else + ifneq (${SUSE},0) + OS=suse + else + ifneq (${REDHAT},0) + OS=redhat + else + ifneq (${MANDRAKE},0) + OS=mandrake + endif + endif endif endif endif