This commit is contained in:
mycroft 1994-12-16 10:01:23 +00:00
parent 600d3f84d5
commit d8f841190c
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/1/93
# $Id: Makefile,v 1.1 1994/05/24 07:33:47 glass Exp $
# $Id: Makefile,v 1.2 1994/12/16 10:03:39 mycroft Exp $
CFLAGS= -DLIBC_SCCS
OBJS= crt0.o gcrt0.o
@ -7,12 +7,12 @@ CLEANFILES+= core a.out
all: ${OBJS}
crt0.o: crt0.s
crt0.o: crt0.S
${CPP} -DCRT0 ${.ALLSRC} | ${AS} -o $@
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}
gcrt0.o: crt0.s
gcrt0.o: crt0.S
${CPP} -DMCRT0 ${.ALLSRC} | ${AS} -o $@
@${LD} -x -r ${.TARGET}
@mv a.out ${.TARGET}

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.11 1994/07/06 04:08:28 mycroft Exp $
# $Id: Makefile,v 1.12 1994/12/16 10:01:23 mycroft Exp $
LIB= compat
CFLAGS+=-DLIBC_SCCS -DSYSLIBC_SCCS
@ -30,7 +30,7 @@ MLINKS+=stty.3 gtty.3
SRCS+= cfree.c lsearch.c regex.c rexec.c
.if (${MACHINE_ARCH} == "m68k")
SRCS+= insque.s remque.s
SRCS+= insque.S remque.S
.else
SRCS+= insque.c remque.c
.endif