public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* egcs-971031, openVMS/Alpha, makefile for c-torture/execute
@ 1997-11-03  3:21 Klaus Kaempf
  0 siblings, 0 replies; only message in thread
From: Klaus Kaempf @ 1997-11-03  3:21 UTC (permalink / raw)
  To: egcs list

Here's a makefile for c-torture/execute on VMS:


Mon Nov  3 12:04:00 1997  Klaus Kaempf  (kkaempf@progis.de)

	* execute/makefile.vms: New file.

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

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

CC=gcc
CFLAGS=/define=("exit=decc$$exit")

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

.PHONY: clean

%.run: %.exe
	-$$ run $^

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

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

all: $(OFILES) $(EFILES) $(RFILES)

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


-- 
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] only message in thread

only message in thread, other threads:[~1997-11-03  3:21 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-11-03  3:21 egcs-971031, openVMS/Alpha, makefile for c-torture/execute Klaus Kaempf

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).