diff options
author | 1997-03-25 14:31:07 +0000 | |
---|---|---|
committer | 1997-03-25 14:31:07 +0000 | |
commit | 644d4ef671a58ac08b229fc02848dc5e6368aca7 (patch) | |
tree | 1c27021c134a4e63ea7908cc7b3b342a7b6a4a43 | |
parent | Back out my previous kludge to make tar files with short trailers work in (diff) | |
download | wireguard-openbsd-644d4ef671a58ac08b229fc02848dc5e6368aca7.tar.xz wireguard-openbsd-644d4ef671a58ac08b229fc02848dc5e6368aca7.zip |
Make AS, AR & LD overrideable
-rw-r--r-- | sys/arch/m68k/fpsp/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/m68k/fpsp/Makefile b/sys/arch/m68k/fpsp/Makefile index eb4c4cbb33b..813d9f2a9ec 100644 --- a/sys/arch/m68k/fpsp/Makefile +++ b/sys/arch/m68k/fpsp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 1997/01/13 11:51:07 niklas Exp $ +# $OpenBSD: Makefile,v 1.12 1997/03/25 14:31:07 niklas Exp $ # $NetBSD: Makefile,v 1.4 1994/10/26 07:48:46 cgd Exp $ # MOTOROLA MICROPROCESSOR & MEMORY TECHNOLOGY GROUP @@ -39,13 +39,13 @@ TARGET = fpsp -AS = as -m68040 -LD = ld +AS ?= as -m68040 +LD ?= ld # # For the Library Version: # -AR = ar +AR ?= ar LIB_FILTER = sed 's/fpsp.defs/l_fpsp.defs/' LIB_TARGET = lib$(TARGET).a # |