public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Makefile.vms for c-torture on openVMS/Alpha
@ 1997-10-11  8:41 Klaus Kaempf
  1997-10-20  1:39 ` Jeffrey A Law
  0 siblings, 1 reply; 2+ messages in thread
From: Klaus Kaempf @ 1997-10-11  8:41 UTC (permalink / raw)
  To: egcs list

Here's a makefile for c-torture/execute on openVMS/Alpha

#
# Makefile for c-torture/execute
#
# Written by Klaus K"ampf, kkaempf@progis.de
#
#

.SUFFIXES:
.SUFFIXES: .c .obj .exe .run

CC=kgcc
CFLAGS=/machine/noopt/define=("exit=decc$$exit")

CFILES= $(wildcard *.c)
OFILES= $(CFILES:.c=.obj)
EFILES= $(CFILES:.c=.exe)
RFILES= $(CFILES:.c=.run)

.PHONY: clean

.exe.run:
	-$$ run $^

.c.obj:
	$(CC) $(CFLAGS) $^

.obj.exe:
	$(LD) $(LDFLAGS) /exe=$@ $^ $(LDLIBS) $(CRT0)

all: $(EFILES) $(RFILES)

clean:
	$$ purge
	$(RM) *.obj;
	$(RM) *.exe;

-- 
proGIS Software                 E-Mail: kkaempf@progis.de
Dipl.-Inform. Klaus K"ampf      Fax:    0241-47067-29
Jakobstr. 117                   Voice:  0241-47067-11
D-52064 Aachen                  WWW:	http://www.progis.de


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Makefile.vms for c-torture on openVMS/Alpha
  1997-10-11  8:41 Makefile.vms for c-torture on openVMS/Alpha Klaus Kaempf
@ 1997-10-20  1:39 ` Jeffrey A Law
  0 siblings, 0 replies; 2+ messages in thread
From: Jeffrey A Law @ 1997-10-20  1:39 UTC (permalink / raw)
  To: Klaus Kaempf; +Cc: egcs list

  In message < 9710111552.AA10607@progis.de >you write:
  > Here's a makefile for c-torture/execute on openVMS/Alpha
I assume vms can't run dejagnu :-)

I guess the only issue is see is "CC=kgcc"

Is that really right?  Shouldn't it be gcc or some xgcc variant?


jeff

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1997-10-20  1:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-10-11  8:41 Makefile.vms for c-torture on openVMS/Alpha Klaus Kaempf
1997-10-20  1:39 ` Jeffrey A Law

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).