NetBSD/sys/arch/amiga/stand/loadbsd/Makefile
is a63c9b84e2 - Add code to loadbsd.c to allow booting on DraCos. This could be done
in a more elegant way, but it works as is, and we need it now.
- Add a README and Makefile for the above. Note that this directory should
  NOT be added to ../Makefile's SUBDIRS.
1996-06-26 15:53:05 +00:00

12 lines
213 B
Makefile

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