2
0
Fork 0

Only build x286emul if EMU_X286 is enabled in CONFIG.

This commit is contained in:
jaggy 1997-03-07 21:08:29 +00:00
parent a84772fa87
commit 0dab5aea0c
2 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,11 @@
Fri Mar 7 21:04:24 GMT/BST 1997
* Only build x286emul if EMU_X286 is enabled in CONFIG. There
are many insallations which appear to either not have the
a.out compiler support or have it installed incorrectly.
-- Mike
Tue Feb 18 22:04:39 GMT/BST 1997
* Removed unnecessary and incorrect includes.

View file

@ -1,14 +1,19 @@
#
# Makefile for the iBCS emulator files
#
# $Id: Makefile,v 1.42 1997/02/18 22:05:32 jaggy Exp $
# $Id: Makefile,v 1.43 1997/03/07 21:08:29 jaggy Exp $
# $Source: /nfs4/sophia/home/mjagdis/src/ibcs.cvs/ibcs/Makefile,v $
#
######## You should not need to change anything in this file ########
include CONFIG
SUBDIRS= iBCSemul x286emul Tools
SUBDIRS= iBCSemul Tools
ifeq ($(EMU_X286),yes)
SUBDIRS := $(SUBDIRS) x286emul
endif
all: CONFIG