head	1.1;
access;
symbols
	V-0-3-0:1.1
	V-0-2-4:1.1
	V-0-2-3:1.1
	V-0-2-2:1.1
	V-0-2-1:1.1
	V-0-2:1.1
	V-0-1:1.1;
locks; strict;
comment	@# @;


1.1
date	97.06.23.15.07.44;	author wk;	state Exp;
branches;
next	;


desc
@@


1.1
log
@First check in
@
text
@# [Makefile wk 19.06.97] for the C runtime

include ../../../config.mk

.PHONY: all clean install

target_dir := $(PREFIX)/${TARGET}

all:  crt0.o dllcrt0.o

install: all
	set -e; for i in crt0.o dllcrt0.o ; do \
	  $(INSTALL) -m 644 $$i $(target_dir)/lib ; done

crt0.o	: crt0.c init.c
	$(GCC) $(CFLAGS) -c -o crt0.o crt0.c

dllcrt0.o  : dllcrt0.c init.c
	$(GCC) $(CFLAGS) -c -o dllcrt0.o dllcrt0.c

clean:
	-rm -f *.o *.a *~

@
