-- What's a signature? ---------------------------------------------------------------------- #!/bin/sh # # generate a Makefile from an Imakefile from inside or outside the sources! # usage="usage: $0 [top_of_sources_pathname [current_directory]]" topdir= curdir=. case $# in 0) ;; 1) topdir=$1 ;; 2) topdir=$1 curdir=$2 ;; *) echo "$usage" 1>&2; exit 1 ;; esac case "$topdir" in -*) echo "$usage" 1>&2; exit 1 ;; esac if [ -f Makefile ]; then echo mv Makefile Makefile.bak mv Makefile Makefile.bak fi if [ -n "$topdir" ]; then args="-I$topdir/config -DTOPDIR=$topdir -DCURDIR=$curdir" elif [ -n "$OPENWINHOME" ]; then args=" "-I$OPENWINHOME/lib/config else args=" "-I/usr/lib/X11/config fi echo imake $args imake $args -- Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>. To unsubscribe from the list, send "unsubscribe fvwm" in the body of a message to majordomo_at_hpc.uh.edu. To report problems, send mail to fvwm-owner_at_hpc.uh.edu.Received on Thu Aug 15 1996 - 04:40:33 BST
This archive was generated by hypermail 2.3.0 : Mon Aug 29 2016 - 19:37:59 BST