diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-11-02 18:59:07 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2012-11-02 18:59:07 +0000 |
commit | 449353760a74bcadd0704b495d89766a3a1844f1 (patch) | |
tree | fa71501f98463b02a47e74909b882de8cb40fd9e /util/imake/xmkmf.cpp | |
parent | 88593b9f8514d61d147ee353d7749997ccf9af04 (diff) |
Remove things that are no longer linked to the build: imake,cf and pciids
Diffstat (limited to 'util/imake/xmkmf.cpp')
-rw-r--r-- | util/imake/xmkmf.cpp | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/util/imake/xmkmf.cpp b/util/imake/xmkmf.cpp deleted file mode 100644 index a78a501b1..000000000 --- a/util/imake/xmkmf.cpp +++ /dev/null @@ -1,66 +0,0 @@ -XCOMM!/bin/sh - -XCOMM make a Makefile from an Imakefile from inside or outside the sources - -usage="usage: $0 [-a] [top_of_sources_pathname [current_directory]]" - -configdirspec=CONFIGDIRSPEC -topdir= -curdir=. -do_all= -imake_defines= - -while [ $# -gt 0 ] -do - case "$1" in - -D*) - imake_defines="$imake_defines $1" - shift - ;; - -a) - do_all="yes" - shift - ;; - *) - break - ;; - esac -done - -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 -f Makefile Makefile.bak - mv -f Makefile Makefile.bak -fi - -if [ "$topdir" = "" ]; then - args="-DUseInstalled "$configdirspec -else - args="-I$topdir/config/cf -DTOPDIR=$topdir -DCURDIR=$curdir" -fi - -echo imake $imake_defines $args -case "$do_all" in -yes) - imake $imake_defines $args && - echo "make Makefiles" && - make Makefiles && - echo "make includes" && - make includes && - echo "make depend" && - make depend - ;; -*) - imake $imake_defines $args - ;; -esac |