Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>

* makefile.vms: Fix to work with DEC C.
This commit is contained in:
Ian Lance Taylor 1997-10-20 19:30:47 +00:00
parent 412222d910
commit 2319b893ee
2 changed files with 27 additions and 9 deletions

View File

@ -1,3 +1,7 @@
Mon Oct 20 15:28:49 1997 Klaus K"ampf <kkaempf@progis.de>
* makefile.vms: Fix to work with DEC C.
Tue Oct 7 23:58:57 1997 Gavin Koch <gavin@cygnus.com>
* config.sub: Add mips-tx39-elf to marketing names.

View File

@ -3,25 +3,39 @@
#
# Created by Klaus K"ampf (kkaempf@progis.de)
#
# You must use Version 3.75p (proGIS enhanced) of GNU Make
# You must use Version 3.76 of GNU Make
#
#
CC = gcc
CC =
all:
$$ @setup
ifeq ($(CC),cc)
CHECK-COMPILER = check_compiler
else
CHECK-COMPILER =
endif
all: check_cc $(CHECK-COMPILER)
$(CD) [.bfd]
gmake "CC=$(CC)"
@gmake "CC=$(CC)"
$(CD) [-.opcodes]
gmake "CC=$(CC)"
@gmake "CC=$(CC)"
$(CD) [-.libiberty]
gmake "CC=$(CC)"
@gmake "CC=$(CC)"
$(CD) [-.binutils]
gmake "CC=$(CC)"
@gmake "CC=$(CC)"
$(CD) [-.gas]
gmake "CC=$(CC)"
@gmake "CC=$(CC)"
$(CD) [-]
check_cc:
ifeq ($CC,)
@$(ECHO) "Please edit MAKEFILE.VMS and select a C Compiler."
stop
endif
check_compiler:
@$(ECHO) "Perform a '$$ @setup' before starting make"
clean:
$(CD) [.bfd]
gmake clean