summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpefo <pefo@openbsd.org>1996-05-25 09:11:44 +0000
committerpefo <pefo@openbsd.org>1996-05-25 09:11:44 +0000
commit539d9cd77a14757bf8046357e67012e4899fc05d (patch)
tree75bb6e1c21e40b2f7d8ad8a0904df0db14ed01d8
parentAdded support for Mips ELF shlib build. Snapshot status. (diff)
downloadwireguard-openbsd-539d9cd77a14757bf8046357e67012e4899fc05d.tar.xz
wireguard-openbsd-539d9cd77a14757bf8046357e67012e4899fc05d.zip
Minor cleanup
-rw-r--r--lib/csu/mips/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/csu/mips/Makefile b/lib/csu/mips/Makefile
index e773cbc0cec..8a914c23db1 100644
--- a/lib/csu/mips/Makefile
+++ b/lib/csu/mips/Makefile
@@ -1,18 +1,17 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/1/93
-# $Id: Makefile,v 1.3 1996/05/19 20:34:32 pefo Exp $
+# $Id: Makefile,v 1.4 1996/05/25 09:11:44 pefo Exp $
CFLAGS+= -DLIBC_SCCS -I${.CURDIR}
OBJS= crt0.o gcrt0.o scrt0.o
CLEANFILES+= core a.out
SRCS= crt0.c
DEPS=
-CC= gcc
all: ${OBJS}
crt0.o: ${SRCS} ${DEPS}
@echo "${COMPILE.c} -DCRT0 -DDYNAMIC ${.CURDIR}/${SRCS} -o ${.TARGET}"
- @${COMPILE.c} -G0 -mabicalls -fPIC -DCRT0 -DDYNAMIC ${.CURDIR}/${SRCS} -o ${.TARGET}.o
+ @${COMPILE.c} -DCRT0 -DDYNAMIC ${.CURDIR}/${SRCS} -o ${.TARGET}.o
@${LD} -x -r ${.TARGET}.o -o ${.TARGET}
@rm -f ${.TARGET}.o