diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-16 09:27:14 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-01-16 09:27:14 +0000 |
commit | e9f16b69855062feac440e972c93cef99ece8bd4 (patch) | |
tree | 5073df0ec395d6ba5b171435054e4eee05fc68a3 /sys/arch/amiga/stand/loadbsd/Makefile | |
parent | 835aeeacc264a5ba177151c158181779163da7ad (diff) |
Sync to NetBSD 970110
Diffstat (limited to 'sys/arch/amiga/stand/loadbsd/Makefile')
-rw-r--r-- | sys/arch/amiga/stand/loadbsd/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/arch/amiga/stand/loadbsd/Makefile b/sys/arch/amiga/stand/loadbsd/Makefile new file mode 100644 index 00000000000..2acabbffa1a --- /dev/null +++ b/sys/arch/amiga/stand/loadbsd/Makefile @@ -0,0 +1,13 @@ +# $OpenBSD: Makefile,v 1.1 1997/01/16 09:27:00 niklas Exp $ + +CC = gcc +CFLAGS = -m68030 -O2 -D__progname=program_name -noixemul + +OBJS = loadbsd.o getopt.o +LIBS = -lamiga + +loadbsd: $(OBJS) + $(CC) $(CFLAGS) $(LDFLAGS) -o loadbsd $(OBJS) $(LIBS) + +clean: + delete $(OBJS) loadbsd |