gcc subdir for combined gcc/ack library build

This commit is contained in:
Ben Gras
2005-10-10 15:28:15 +00:00
parent 8c53e4007e
commit 1da5b5ccee
20 changed files with 759 additions and 0 deletions

27
lib/gnu/rts/Makefile.gnu Normal file
View File

@@ -0,0 +1,27 @@
CC=gcc
AR=gar
AS=gas
VPATH=$(SRCDIR)/gnu/rts
#Makefile for lib/gcc/mach/minix.i386/libsys.
LIBRARY = ../../libc.a
OBJECTS = \
_longjmp.o \
_setjmp.o \
longjmp.o \
setjmp.o \
all: $(LIBRARY)
$(LIBRARY): $(OBJECTS)
$(AR) cr $@ *.o
_longjmp.o: _longjmp.s
_setjmp.o: _setjmp.s
longjmp.o: longjmp.s
setjmp.o: setjmp.s
# $PchId: Makefile,v 1.4 1996/02/22 21:54:11 philip Exp $