diff options
author | dawes <dawes> | 1997-04-13 14:50:02 +0000 |
---|---|---|
committer | dawes <dawes> | 1997-04-13 14:50:02 +0000 |
commit | bc1f2ead969e20a13f835e7cb027d884dcd65e2c (patch) | |
tree | 4b2d5cf497a7b787c89ac5c79064ea1273d8650d /Makefile | |
parent | e7f458871f184f17760e095d129bf887e0bd6510 (diff) |
Create empty xc/config/cf/host.def when none exists
Update README for NCR name change
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ # $XConsortium: Makefile /main/36 1996/11/13 14:42:50 lehors $ -# $XFree86: xc/Makefile,v 3.5 1996/03/04 04:19:16 dawes Exp $ +# $XFree86: xc/Makefile,v 3.6 1996/12/23 05:49:50 dawes Exp $ # Luna users will need to either run make as "make MAKE=make" # or add "MAKE = make" to this file. @@ -46,6 +46,9 @@ World: ;; esac; @date @echo "" + @if [ ! -f $(IRULESRC)/host.def ]; then \ + echo "" > $(IRULESRC)/host.def; \ + fi cd $(IMAKESRC) && $(MAKE) $(FLAGS) clean $(MAKE) $(MFLAGS) Makefile.boot $(MAKE_CMD) $(MFLAGS) VerifyOS @@ -101,6 +104,7 @@ World.Win32: @echo Building $(RELEASE) of the X Window System. @echo : @echo : + -@if not exist $(IRULESRC)\host.def echo > $(IRULESRC)\host.def cd $(IMAKESRC) $(MAKE) -f Makefile.ini clean.Win32 $(MAKE) -f Makefile.ini imake.exe @@ -127,6 +131,7 @@ World.OS2: @echo Building $(RELEASE) of the X Window System on OS/2. @echo : @echo : + -@if not exist $(IRULESRC)\host.def echo > $(IRULESRC)\host.def \indir $(IMAKESRC) $(MAKE) SHELL= -f Makefile.ini clean.os2 \indir $(IMAKESRC) $(MAKE) SHELL= CC=gcc -f Makefile.ini imake.os2 -if exist Makefile.bak del Makefile.bak |