mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-25 19:14:52 +08:00
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:
parent
412222d910
commit
2319b893ee
@ -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.
|
||||
|
32
makefile.vms
32
makefile.vms
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user